:returns: The volume of this Shape
(self, tol: float | None = None)
| 1111 | return Properties.Mass() |
| 1112 | |
| 1113 | def Volume(self, tol: float | None = None) -> float: |
| 1114 | """ |
| 1115 | :returns: The volume of this Shape |
| 1116 | """ |
| 1117 | # when density == 1, mass == volume |
| 1118 | return Shape.computeMass(self, tol) |
| 1119 | |
| 1120 | def _apply_transform(self: T, Tr: gp_Trsf) -> T: |
| 1121 |