Hello,
I am trying to add cone-shaped or triangular pyramid-shaped vtkpolydata fins to vtkpolydata at specific positions in polydata. (like picture below )
I plan to print this stl using 3d print, and I have tried the vtkBooleanfilter, but failed to print due to the non-manifold issue, so I am asking if there is another good method.
My trials-----
-
Merging two vtkpolydata using vtkAppendfilter → 3d print was not possible (It looks like it’s merged, but is impossible to print because the vertex and face are configured separately)
-
Merging two vtkpolydata using vtkBooleanfilter: 3d print impossible due to non-manifold creation (same issue as [this person](https://discourse.vtk.org/t/the-result-of-boolean-operation-returns-non-manifold-surfaces /4018) )
-
Using Ronald Romer’s vtkbool library: Since my project uses vtk-9, it was difficult to build and use. (Note https://github.com/zippy84/vtkbool/pull/37)
Has anyone tried a similar approach?
Any advice or code example would be great. Thank you.