Skip to content

Commit

Permalink
Merge pull request topology-tool-kit#1004 from CharlesGueunet/vtkVers…
Browse files Browse the repository at this point in the history
…ionFixforCT

Missing includes for PV master
  • Loading branch information
julien-tierny committed Jan 17, 2024
2 parents 03fcec0 + d5d0da4 commit 0b76f06
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/vtk/ttkAlgorithm/ttkTriangulationFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <vtkPointData.h>
#include <vtkPolyData.h>
#include <vtkUnstructuredGrid.h>
#include <vtkVersion.h>
#include <vtkVersionMacros.h>

static vtkCellArray *GetCells(vtkDataSet *dataSet) {
switch(dataSet->GetDataObjectType()) {
Expand Down
1 change: 1 addition & 0 deletions core/vtk/ttkContourTree/ttkContourTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <vtkInformationVector.h>
#include <vtkPolyData.h>
#include <vtkThreshold.h>
#include <vtkVersionMacros.h>

vtkStandardNewMacro(ttkContourTree);

Expand Down
1 change: 1 addition & 0 deletions core/vtk/ttkExtract/ttkExtract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <vtkPointData.h>
#include <vtkSignedCharArray.h>
#include <vtkThreshold.h>
#include <vtkVersionMacros.h>

#include <ttkUtils.h>

Expand Down
1 change: 1 addition & 0 deletions core/vtk/ttkMergeTree/ttkMergeTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <vtkSignedCharArray.h>
#include <vtkThreshold.h>
#include <vtkUnsignedCharArray.h>
#include <vtkVersionMacros.h>

vtkStandardNewMacro(ttkMergeTree);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <vtkTransformFilter.h>
#include <vtkUnsignedCharArray.h>
#include <vtkUnstructuredGrid.h>
#include <vtkVersion.h> // for VTK_VERSION_CHECK via ParaView 5.8.1
#include <vtkVersionMacros.h> // for VTK_VERSION_CHECK

int VTUToDiagram(ttk::DiagramType &diagram,
vtkUnstructuredGrid *vtu,
Expand Down

0 comments on commit 0b76f06

Please sign in to comment.