From 8ebb4d5b6fb96910bb10fb32a9ced088faca1362 Mon Sep 17 00:00:00 2001 From: A-Walrus Date: Sun, 19 Mar 2023 13:47:13 +0200 Subject: [PATCH] Update docs for `Solid` --- crates/fj-kernel/src/objects/full/solid.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/fj-kernel/src/objects/full/solid.rs b/crates/fj-kernel/src/objects/full/solid.rs index dfe53c8850..0dd3cf18e3 100644 --- a/crates/fj-kernel/src/objects/full/solid.rs +++ b/crates/fj-kernel/src/objects/full/solid.rs @@ -5,7 +5,9 @@ use crate::{ storage::Handle, }; -/// A 3-dimensional shape +/// A 3-dimensional shape, built from [`Shell`]s. Many Solids will contains only +/// one shell, but if the Solid contains cavities they will be reprented by a +/// shell each, as well as a shell for the outside. /// /// # Implementation Note ///