Skip to content

Commit f4e6347

Browse files
committed
xpass NURBS Curve derivatives, as these are currently broken but don't fail
1 parent 08bd8f6 commit f4e6347

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_curve.py

+3
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,9 @@ def test_nurbs_curve2d_slice_eval(unit_circle_tri_ctrlpts, param, res):
279279
assert abs(evalpt[0] - res[0]) < GEOMDL_DELTA
280280
assert abs(evalpt[1] - res[1]) < GEOMDL_DELTA
281281

282+
283+
# TODO: derivative of a circle is a circle
284+
@mark.xfail
282285
@mark.parametrize("param, order, res", [
283286
(0.0, 1, ((5.0, 5.0), (90.9090, 90.9090))),
284287
(0.2, 2, ((13.8181, 11.5103), (40.0602, 17.3878), (104.4062, -29.3672))),

0 commit comments

Comments
 (0)