Skip to content

Commit

Permalink
solid: Fix addInteriorShell docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitjano committed Oct 23, 2024
1 parent e919d0d commit 48a8709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Solid.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,15 @@ 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)
{
_shells.push_back(shell.clone());
}
/**
* add a polygon to the PolyhedralSurface
* adds an interior shell to the Solid
*/
inline void
addInteriorShell(PolyhedralSurface *shell)
Expand Down

0 comments on commit 48a8709

Please sign in to comment.