Replies: 1 comment
-
You will have a better chance to get an answer if you ask that question on the vtk discourse. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello:
I need to fillet the model in the image below. My method is to generate a model that intersects the original model at each of the four cusps of the model, and perform a Boolean operation with the original model to obtain the difference. But I've found that using vtkBooleanOperationPolyDataFilter() directly gives me an error. In C++, I took a workaround of customizing a class that inherits from vtkBooleanOperationPolyDataFilter() and overriding the RequestData() method in it. However, in Python I found that vtkBooleanOperationPolyDataFilter() doesn't have a RequestData() method. Is there any way to fix this?
Beta Was this translation helpful? Give feedback.
All reactions