chore: typographical improvements per review
All checks were successful
/ test (pull_request) Successful in 3m45s

This commit is contained in:
Glen Whitney 2025-10-06 16:31:02 -06:00
parent ecbbe2068c
commit 46ffd6c285
3 changed files with 11 additions and 10 deletions

View file

@ -46,7 +46,7 @@ pub fn project_sphere_to_normalized(rep: &mut DVector<f64>) {
// normalize a point's representation vector by scaling
pub fn project_point_to_normalized(rep: &mut DVector<f64>) {
rep.scale_mut(0.5 / rep[3]); //FIXME: This 3 should be Point::WEIGHT_COMPONENT
rep.scale_mut(0.5 / rep[3]);
}
// --- partial matrices ---