Makes a solid from a single shell.
(cls, shell: Shell)
| 4182 | |
| 4183 | @classmethod |
| 4184 | def makeSolid(cls, shell: Shell) -> Solid: |
| 4185 | """ |
| 4186 | Makes a solid from a single shell. |
| 4187 | """ |
| 4188 | |
| 4189 | return cls(ShapeFix_Solid().SolidFromShell(shell.wrapped)) |
| 4190 | |
| 4191 | @classmethod |
| 4192 | def makeBox( |
no outgoing calls