We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a66de commit e62c5d6Copy full SHA for e62c5d6
src/compas_occ/geometry/curves/nurbs.py
@@ -509,6 +509,10 @@ def transformed(self, T: Transformation) -> NurbsCurve:
509
copy.transform(T)
510
return copy
511
512
+ def reverse(self) -> None:
513
+ """Reverse the parametrisation of the curve."""
514
+ self.occ_curve.Reverse()
515
+
516
def space(self, n: int = 10) -> List[float]:
517
"""Compute evenly spaced parameters over the curve domain."""
518
u, v = self.domain
0 commit comments