Trim the edge in the parametric space to (u0, u1). NB: this operation is done on the base geometry.
(self, u0: Real, u1: Real)
| 2597 | return rv |
| 2598 | |
| 2599 | def trim(self, u0: Real, u1: Real) -> Edge: |
| 2600 | """ |
| 2601 | Trim the edge in the parametric space to (u0, u1). |
| 2602 | |
| 2603 | NB: this operation is done on the base geometry. |
| 2604 | """ |
| 2605 | |
| 2606 | bldr = BRepBuilderAPI_MakeEdge(self._geomAdaptor().Curve().Curve(), u0, u1) |
| 2607 | |
| 2608 | return self.__class__(bldr.Shape()) |
| 2609 | |
| 2610 | def hasPCurve(self, f: Face) -> bool: |
| 2611 | """ |