#include "vtkImplicitPlaneRepresentation.h" #include #include #include "WidgetTestingMacros.h" #include "vtkPolyData.h" #include "vtkPolyDataAlgorithm.h" #include "vtkPlane.h" #include "vtkProperty.h" int vtkImplicitPlaneRepresentationTest1(int , char * [] ) { vtkSmartPointer< vtkImplicitPlaneRepresentation > node1 = vtkSmartPointer< vtkImplicitPlaneRepresentation >::New(); EXERCISE_BASIC_IMPLICIT_PLANE_REPRESENTATION_METHODS(vtkImplicitPlaneRepresentation, node1); vtkSmartPointer pd; node1->GetPolyData(pd); if (pd == nullptr) { std::cout << "Polydata is null" << std::endl; } vtkSmartPointer pda = node1->GetPolyDataAlgorithm(); if (pda == nullptr) { std::cout << "Polydata algorithm is null" << std::endl; } vtkSmartPointer plane = vtkSmartPointer::New(); node1->GetPlane(plane); if (!plane) { std::cout << "Plane is null" << std::endl; } node1->UpdatePlacement(); vtkSmartPointer prop = node1->GetNormalProperty(); if (prop == nullptr) { std::cout << "Normal Property is nullptr." << std::endl; } prop = node1->GetSelectedNormalProperty(); if (prop == nullptr) { std::cout << "Selected Normal Property is nullptr." << std::endl; } prop = node1->GetPlaneProperty(); if (prop == nullptr) { std::cout << "Plane Property is nullptr." << std::endl; } prop = node1->GetSelectedPlaneProperty(); if (prop == nullptr) { std::cout << "Selected Plane Property is nullptr." << std::endl; } prop = node1->GetOutlineProperty(); if (prop == nullptr) { std::cout << "Outline Property is nullptr." << std::endl; } prop = node1->GetSelectedOutlineProperty(); if (prop == nullptr) { std::cout << "Selected Outline Property is nullptr." << std::endl; } prop = node1->GetEdgesProperty(); if (prop == nullptr) { std::cout << "Edges Property is nullptr." << std::endl; } // clamped 0-7 TEST_SET_GET_INT_RANGE(node1, InteractionState, 1, 6); TEST_SET_GET_INT_RANGE(node1, RepresentationState, 0, 5); return EXIT_SUCCESS; }