Hi, I’m interested in using vtkSurfaceNets3D mentioned in “Really Fast Isocontouring” article of the Kitware blog.
However, python vtk module seems not have vtkSurfaceNets3D. I found only vtkSurfaceNets2D.
Is there any way to call vtkSurfaceNets3D
using vtk python module?
In [1]: import vtk
In [2]: vtk.__version__
Out[2]: '9.2.6'
In [3]: s2 = vtk.vtkSurfaceNets2D()
In [4]: s3 = vtk.vtkSurfaceNets3D()
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[4], line 1
----> 1 s3 = vtk.vtkSurfaceNets3D()
AttributeError: module 'vtk' has no attribute 'vtkSurfaceNets3D'