:returns: The point of the center of mass of this Shape
(self)
| 752 | raise NotImplementedError |
| 753 | |
| 754 | def Center(self) -> Vector: |
| 755 | """ |
| 756 | :returns: The point of the center of mass of this Shape |
| 757 | """ |
| 758 | |
| 759 | return Shape.centerOfMass(self) |
| 760 | |
| 761 | def CenterOfBoundBox(self, tolerance: float | None = None) -> Vector: |
| 762 | """ |