(patch_vtk)
| 141 | |
| 142 | |
| 143 | def test_show_nurbs(patch_vtk): |
| 144 | |
| 145 | # smoke tests for Surface and Curve |
| 146 | surf = Surface.fromFace(plane(1, 1).toNURBS()) |
| 147 | crv = Curve.fromEdge(segment((0, 0), (1, 1)).toNURBS()) |
| 148 | |
| 149 | show(surf) |
| 150 | show(crv) |
| 151 | show(ctrlPts(surf)) |
| 152 | show(ctrlPts(crv)) |
| 153 | |
| 154 | |
| 155 | def test_screenshot(wp, patch_vtk): |