Parametric bounds of the curve.
(self: Mixin1DProtocol)
| 2088 | return self.bounds() |
| 2089 | |
| 2090 | def bounds(self: Mixin1DProtocol) -> tuple[float, float]: |
| 2091 | """ |
| 2092 | Parametric bounds of the curve. |
| 2093 | """ |
| 2094 | |
| 2095 | curve = self._geomAdaptor() |
| 2096 | return curve.FirstParameter(), curve.LastParameter() |
| 2097 | |
| 2098 | def startPoint(self: Mixin1DProtocol) -> Vector: |
| 2099 | """ |
no test coverage detected