:returns: The closedness flag
(self)
| 866 | return Vector(sum_wc.multiply(1.0 / total_mass)) |
| 867 | |
| 868 | def Closed(self) -> bool: |
| 869 | """ |
| 870 | :returns: The closedness flag |
| 871 | """ |
| 872 | return self.wrapped.Closed() |
| 873 | |
| 874 | def ShapeType(self) -> Shapes: |
| 875 | return tcast(Shapes, shape_LUT[shapetype(self.wrapped)]) |
no outgoing calls