Passing data

Hi, I have a 2 vtkDelaunay3D objects that I want to pass into vtkBooleanOPerationPolyDataFilter. What is the general syntax to accomplish this?

Thanks.

These are all regular VTK filters, which you can connect by calling something like this: someFilter.SetInputConnection(someOtherFilter.GetOutputPort()). You can learn fundamentals of VTK from the VTK textbook and VTK examples website.