diff --git a/crates/fj-interop/src/model.rs b/crates/fj-interop/src/model.rs index 0f1076d42..3ea622da9 100644 --- a/crates/fj-interop/src/model.rs +++ b/crates/fj-interop/src/model.rs @@ -7,9 +7,9 @@ use crate::mesh::Mesh; /// An approximated model #[derive(Clone, Debug)] pub struct Model { - /// The axis-aligned bounding box of the model - pub aabb: Aabb<3>, - /// The triangle mesh that approximates the model pub mesh: Mesh>, + + /// The axis-aligned bounding box of the model + pub aabb: Aabb<3>, }