VTK/Examples/Cxx/PolyData/CellTreeLocator
From KitwarePublic
Jump to navigationJump to searchSee CellTreeLocator on the new VTKExamples website.
CMakeLists.txt
cmake_minimum_required(VERSION 2.6)
PROJECT(PointInsideObjectUsingCellTree)
FIND_PACKAGE(VTK REQUIRED)
INCLUDE(${VTK_USE_FILE})
ADD_EXECUTABLE(PointInsideObjectUsingCellTree PointInsideObjectUsingCellTree.cxx)
TARGET_LINK_LIBRARIES(PointInsideObjectUsingCellTree vtkHybrid vtkFiltering vtkCommon)