(self)
| 5721 | Face.makeNSidedSurface(outer_w, [[0, 0, 1]]) |
| 5722 | |
| 5723 | def test_toVtk(self): |
| 5724 | |
| 5725 | from vtkmodules.vtkCommonDataModel import vtkPolyData |
| 5726 | |
| 5727 | f = Face.makePlane(2, 2) |
| 5728 | vtk = f.toVtkPolyData(normals=False) |
| 5729 | |
| 5730 | assert isinstance(vtk, vtkPolyData) |
| 5731 | assert vtk.GetNumberOfPolys() == 2 |
| 5732 | |
| 5733 | def test_iterators(self): |
| 5734 |
nothing calls this directly
no test coverage detected