From 48a870912d75839a1b0a07cdc194d54c9d2f88e7 Mon Sep 17 00:00:00 2001 From: Jean Felder Date: Wed, 23 Oct 2024 16:05:55 +0200 Subject: [PATCH] solid: Fix addInteriorShell docstring --- src/Solid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Solid.h b/src/Solid.h index 347910c8..f5789987 100644 --- a/src/Solid.h +++ b/src/Solid.h @@ -129,7 +129,7 @@ class SFCGAL_API Solid : public Geometry { return _shells[n + 1]; } /** - * add a polygon to the PolyhedralSurface + * adds an interior shell to the Solid */ inline void addInteriorShell(const PolyhedralSurface &shell) @@ -137,7 +137,7 @@ class SFCGAL_API Solid : public Geometry { _shells.push_back(shell.clone()); } /** - * add a polygon to the PolyhedralSurface + * adds an interior shell to the Solid */ inline void addInteriorShell(PolyhedralSurface *shell)