From 1b79f957398f2bd927c1a8df66aad2ef14deb84d Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 6 Jun 2023 12:33:50 +0200 Subject: [PATCH] Update documentation of `Model` --- crates/fj-interop/src/processed_shape.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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>, }