pub fn batch_transform_points( mat: &Mat4, points: &[Point3], out: &mut Vec<Point3>, )
Batch transform: apply a Mat4 to an array of points.
Mat4
Processing points in batches enables auto-vectorization.