Convert to a Face object.
(self, tol: float = 1e-3)
| 231 | ) |
| 232 | |
| 233 | def face(self, tol: float = 1e-3) -> Face: |
| 234 | """ |
| 235 | Convert to a Face object. |
| 236 | """ |
| 237 | |
| 238 | return Face(BRepBuilderAPI_MakeFace(self.surface(), tol).Shape()) |
| 239 | |
| 240 | @classmethod |
| 241 | def fromFace(cls, f: Face): |