Skip to content

ReverseSense

vtk-examples/Cxx/PolyData/ReverseSense

Question

If you have a question about this example, please use the VTK Discourse Forum

Code

ReverseSense.cxx

#include <vtkFloatArray.h>
#include <vtkNew.h>
#include <vtkPointData.h>
#include <vtkReverseSense.h>
#include <vtkSphereSource.h>

#include <iostream>
#include <string>

int main(int, char*[])
{
  vtkNew<vtkSphereSource> sphereSource;
  sphereSource->Update();

  auto pointNormals = dynamic_cast<vtkFloatArray*>(
      sphereSource->GetOutput()->GetPointData()->GetNormals());

  std::cout << std::endl << "Normals: " << std::endl;
  // Display the first few normals.
  for (unsigned int i = 0; i < 5; i++)
  {
    double pN[3];
    pointNormals->GetTuple(i, pN);
    std::cout << "Point normal " << i << ": " << pN[0] << " " << pN[1] << " "
              << pN[2] << std::endl;
  }

  vtkNew<vtkReverseSense> reverseSense;
  reverseSense->SetInputConnection(sphereSource->GetOutputPort());
  reverseSense->ReverseNormalsOn();
  reverseSense->Update();

  auto reversedNormals = dynamic_cast<vtkFloatArray*>(
      reverseSense->GetOutput()->GetPointData()->GetNormals());

  std::cout << std::endl << "Reversed: " << std::endl;
  // Display the first few normals to verify that they are flipped
  for (unsigned int i = 0; i < 5; i++)
  {
    double pN[3];
    reversedNormals->GetTuple(i, pN);
    std::cout << "Reversed normal " << i << ": " << pN[0] << " " << pN[1] << " "
              << pN[2] << std::endl;
  }

  return EXIT_SUCCESS;
}

CMakeLists.txt

cmake_minimum_required(VERSION 3.12 FATAL_ERROR)

project(ReverseSense)

find_package(VTK COMPONENTS 
  CommonCore
  CommonDataModel
  FiltersCore
  FiltersSources
)

if (NOT VTK_FOUND)
  message(FATAL_ERROR "ReverseSense: Unable to find the VTK build folder.")
endif()

# Prevent a "command line is too long" failure in Windows.
set(CMAKE_NINJA_FORCE_RESPONSE_FILE "ON" CACHE BOOL "Force Ninja to use response files.")
add_executable(ReverseSense MACOSX_BUNDLE ReverseSense.cxx )
  target_link_libraries(ReverseSense PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
  TARGETS ReverseSense
  MODULES ${VTK_LIBRARIES}
)

Download and Build ReverseSense

Click here to download ReverseSense and its CMakeLists.txt file. Once the tarball ReverseSense.tar has been downloaded and extracted,

cd ReverseSense/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:

./ReverseSense

WINDOWS USERS

Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.