I have a VTKWeb workflow and I found the vtkPVGridAxes3DActor that I would like to use.
Is there a way to use it with only VTK without Paraview?
Are there other ways to achieve the same feature as vtkPVGridAxes3DActor in VTK?
Thanks for the help!
I have a VTKWeb workflow and I found the vtkPVGridAxes3DActor that I would like to use.
Is there a way to use it with only VTK without Paraview?
Are there other ways to achieve the same feature as vtkPVGridAxes3DActor in VTK?
Thanks for the help!
Hello,
Short answer: add a thirdparty/paraview
directory to your source tree and copy over there the PV’s source files (headers and .cxx files) required by vtkPVGridAxes3DActor
. Copy all source files starting with vtkPVGridAxes3DActor.cxx
(ParaView/Remoting/Views/vtkPVGridAxes3DActor.cxx at master · Kitware/ParaView · GitHub) and following up the #include
s until you reach the .h
s (and their matching .cxx
s) #include
ing only VTK headers.
take care,
PC