:returns: The surface area of all faces in this Shape
(self)
| 1102 | ) |
| 1103 | |
| 1104 | def Area(self) -> float: |
| 1105 | """ |
| 1106 | :returns: The surface area of all faces in this Shape |
| 1107 | """ |
| 1108 | Properties = GProp_GProps() |
| 1109 | BRepGProp.SurfaceProperties_s(self.wrapped, Properties) |
| 1110 | |
| 1111 | return Properties.Mass() |
| 1112 | |
| 1113 | def Volume(self, tol: float | None = None) -> float: |
| 1114 | """ |
no outgoing calls