Improvements to axis handling (#6530)

Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
Nick Cameron
2025-04-29 08:29:22 +12:00
committed by GitHub
parent 94452cce88
commit d96a4d3337
93 changed files with 3216 additions and 3209 deletions

View File

@ -29,7 +29,7 @@ async fn inner_offset_plane(
// standard planes themselves.
plane.value = PlaneType::Custom;
let normal = plane.x_axis.cross(&plane.y_axis);
let normal = plane.x_axis.axes_cross_product(&plane.y_axis);
plane.origin += normal * offset.to_length_units(plane.origin.units);
make_offset_plane_in_engine(&plane, exec_state, args).await?;