removeNaNNormalsFromPointCloud
Removes points that have their normals invalid (i.e., equal to NaN).
removeNaNNormalsFromPointCloud(cloudIn, cloudOut, indices)
Type Definitions
function removeNaNNormalsFromPointCloud<T extends Normal | PointNormal>(cloudIn: PointCloud<T>, cloudOut?: PointCloud<T>, indices?: Indices): {
    cloud: PointCloud<T>;
    indices: Indices;
};