Fix PlaneData to Plane case

This commit is contained in:
David Reeves
2025-03-28 12:17:03 +00:00
parent 4ff38e7f44
commit 8c062b3c90

View File

@ -295,7 +295,7 @@ impl Plane {
id,
artifact_id: id.into(),
origin: Point3d::new(0.0, 0.0, 0.0),
x_axis: Point3d::new(-1.0, 0.0, 0.0),
x_axis: Point3d::new(1.0, 0.0, 0.0),
y_axis: Point3d::new(0.0, 0.0, 1.0),
z_axis: Point3d::new(0.0, 1.0, 0.0),
value: PlaneType::XZ,