Skip to main content

removeNaNFromPointCloud

Removes points with x, y, or z equal to NaN.

removeNaNFromPointCloud(cloudIn, cloudOut, indices)

Type Definitions

function removeNaNFromPointCloud<T>(cloudIn: PointCloud<T>, cloudOut?: PointCloud<T>, indices?: Indices): {
cloud: PointCloud<T>;
indices: Indices;
};