pub fn surface<'a>(
cloud: &'a PointCloud,
normals: &'a [Vector3<f64>],
) -> Surface<'a>Expand description
Builds a Surface from an existing cloud and its normals.
It exists for readability at call sites: a literal
Surface { cloud, normals } gets lost in a chain of arguments.