(self)
| 3480 | return Vector(du).normalized(), Vector(dv).normalized(), Vector(p) |
| 3481 | |
| 3482 | def Center(self) -> Vector: |
| 3483 | |
| 3484 | Properties = GProp_GProps() |
| 3485 | BRepGProp.SurfaceProperties_s(self.wrapped, Properties) |
| 3486 | |
| 3487 | return Vector(Properties.CentreOfMass()) |
| 3488 | |
| 3489 | def outerWire(self) -> Wire: |
| 3490 |