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