ClipSphereCylinder
VTKEx/Cxx/VisualizationAlgorithms/ClipSphereCylinder
Description¶
Clipping is implemented in vtkClipPolyData . Each polygonal data primitive implements the operation in its Clip() method using case tables. vtkClipPolyData has methods to control whether an implicit function provides the scalar data or whether the dataset’s scalar data will be used. ComputeScalarDataOn() uses the implicit function and ComputeScalarDataOff() uses the dataset’s scalar data. Two output polygonal datasets are produced. These are accessed with GetOutput() and GetClippedOutput() methods. GetOutput() returns the polygonal data that is “inside” the clipping region while GetClippedOutput() returns polygonal data that is “outside” the region. (Note that GenerateClippedOutputOn() must be enabled if you are to get the clipped output.) The meaning of inside and outside can be reversed using the InsideOutOn().
This example shows a plane of quadrilaterals clipped with a boolean implicit function.
Info
See Figure 9-48 in Chapter 9 The VTK Textbook.
Other languages
See (Python)
Question
If you have a simple question about this example contact us at VTKExProject If your question is more complex and may require extended discussion, please use the VTK Discourse Forum
Code¶
ClipSphereCylinder.cxx
#include <vtkActor.h>
#include <vtkCamera.h>
#include <vtkClipPolyData.h>
#include <vtkCylinder.h>
#include <vtkImplicitBoolean.h>
#include <vtkNamedColors.h>
#include <vtkPlaneSource.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderer.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkSphere.h>
#include <vtkTransform.h>
int main (int, char *[])
{
// Demonstrate the use of clipping on polygonal data
//
// create pipeline
//
vtkSmartPointer<vtkNamedColors> colors =
vtkSmartPointer<vtkNamedColors>::New();
vtkSmartPointer<vtkPlaneSource> plane =
vtkSmartPointer<vtkPlaneSource>::New();
plane->SetXResolution(25);
plane->SetYResolution(25);
plane->SetOrigin(-1, -1, 0);
plane->SetPoint1(1, -1, 0);
plane->SetPoint2(-1, 1, 0);
vtkSmartPointer<vtkTransform> transformSphere =
vtkSmartPointer<vtkTransform>::New();
transformSphere->Identity();
transformSphere->Translate(.4, -.4, 0);
transformSphere->Inverse();
vtkSmartPointer<vtkSphere> sphere =
vtkSmartPointer<vtkSphere>::New();
sphere->SetTransform(transformSphere);
sphere->SetRadius(.5);
vtkSmartPointer<vtkTransform> transformCylinder =
vtkSmartPointer<vtkTransform>::New();
transformCylinder->Identity();
transformCylinder->Translate(-.4, .4, 0);
transformCylinder->RotateZ(30);
transformCylinder->RotateY(60);
transformCylinder->RotateX(90);
transformCylinder->Inverse();
vtkSmartPointer<vtkCylinder> cylinder =
vtkSmartPointer<vtkCylinder>::New();
cylinder->SetTransform(transformCylinder);
cylinder->SetRadius(.3);
vtkSmartPointer<vtkImplicitBoolean> boolean =
vtkSmartPointer<vtkImplicitBoolean>::New();
boolean->AddFunction(cylinder);
boolean->AddFunction(sphere);
vtkSmartPointer<vtkClipPolyData> clipper =
vtkSmartPointer<vtkClipPolyData>::New();
clipper->SetInputConnection(plane->GetOutputPort());
clipper->SetClipFunction(boolean);
clipper->GenerateClippedOutputOn();
clipper->GenerateClipScalarsOn();
clipper->SetValue(0);
vtkSmartPointer<vtkPolyDataMapper> clipMapper =
vtkSmartPointer<vtkPolyDataMapper>::New();
clipMapper->SetInputConnection(clipper->GetOutputPort());
clipMapper->ScalarVisibilityOff();
vtkSmartPointer<vtkActor> clipActor =
vtkSmartPointer<vtkActor>::New();
clipActor->SetMapper(clipMapper);
clipActor->GetProperty()->SetDiffuseColor(colors->GetColor3d("Black").GetData());
clipActor->GetProperty()->SetRepresentationToWireframe();
vtkSmartPointer<vtkPolyDataMapper> clipInsideMapper =
vtkSmartPointer<vtkPolyDataMapper>::New();
clipInsideMapper->SetInputData(clipper->GetClippedOutput());
clipInsideMapper->ScalarVisibilityOff();
vtkSmartPointer<vtkActor> clipInsideActor =
vtkSmartPointer<vtkActor>::New();
clipInsideActor->SetMapper(clipInsideMapper);
clipInsideActor->GetProperty()->SetDiffuseColor(colors->GetColor3d("Dim_Gray").GetData());
// Create graphics stuff
//
vtkSmartPointer<vtkRenderer> ren1 =
vtkSmartPointer<vtkRenderer>::New();
vtkSmartPointer<vtkRenderWindow> renWin =
vtkSmartPointer<vtkRenderWindow>::New();
renWin->AddRenderer(ren1);
vtkSmartPointer<vtkRenderWindowInteractor> iren =
vtkSmartPointer<vtkRenderWindowInteractor>::New();
iren->SetRenderWindow(renWin);
// Add the actors to the renderer, set the background and size
//
ren1->AddActor(clipActor);
ren1->AddActor(clipInsideActor);
ren1->SetBackground(colors->GetColor3d("Wheat").GetData());
ren1->ResetCamera();
ren1->GetActiveCamera()->Dolly(1.4);
ren1->ResetCameraClippingRange();
renWin->SetSize(640, 480);
// render the image
//
renWin->Render();
iren->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(ClipSphereCylinder)
find_package(VTK COMPONENTS
vtkvtkCommonColor
vtkvtkCommonDataModel
vtkvtkCommonTransforms
vtkvtkFiltersCore
vtkvtkFiltersSources
vtkvtkInteractionStyle
vtkvtkRenderingContextOpenGL2
vtkvtkRenderingCore
vtkvtkRenderingFreeType
vtkvtkRenderingGL2PSOpenGL2
vtkvtkRenderingOpenGL2 QUIET)
if (NOT VTK_FOUND)
message("Skipping ClipSphereCylinder: ${VTK_NOT_FOUND_MESSAGE}")
return ()
endif()
message (STATUS "VTK_VERSION: ${VTK_VERSION}")
if (VTK_VERSION VERSION_LESS "8.90.0")
# old system
include(${VTK_USE_FILE})
add_executable(ClipSphereCylinder MACOSX_BUNDLE ClipSphereCylinder.cxx )
target_link_libraries(ClipSphereCylinder PRIVATE ${VTK_LIBRARIES})
else ()
# include all components
add_executable(ClipSphereCylinder MACOSX_BUNDLE ClipSphereCylinder.cxx )
target_link_libraries(ClipSphereCylinder PRIVATE ${VTK_LIBRARIES})
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS ClipSphereCylinder
MODULES ${VTK_LIBRARIES}
)
endif ()
Download and Build ClipSphereCylinder¶
Click here to download ClipSphereCylinder and its CMakeLists.txt file. Once the tarball ClipSphereCylinder.tar has been downloaded and extracted,
cd ClipSphereCylinder/build
If VTK is installed:
cmake ..
If VTK is not installed but compiled on your system, you will need to specify the path to your VTK build:
cmake -DVTK_DIR:PATH=/home/me/vtk_build ..
Build the project:
make
and run it:
./ClipSphereCylinder
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.