Create a compound out of a list of shapes
(cls, listOfShapes: Iterable[Shape])
| 4798 | |
| 4799 | @classmethod |
| 4800 | def makeCompound(cls, listOfShapes: Iterable[Shape]) -> Compound: |
| 4801 | """ |
| 4802 | Create a compound out of a list of shapes |
| 4803 | """ |
| 4804 | |
| 4805 | return cls(cls._makeCompound((s.wrapped for s in listOfShapes))) |
| 4806 | |
| 4807 | @classmethod |
| 4808 | def makeText( |