Spring
Repository source: Spring
Other languages
See (Python), (PythonicAPI), (Java)
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
Spring.cxx
#include <vtkActor.h>
#include <vtkCamera.h>
#include <vtkCellArray.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkPolyDataMapper.h>
#include <vtkPolyDataNormals.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkRotationalExtrusionFilter.h>
int main(int, char*[])
{
vtkNew<vtkNamedColors> colors;
// Create the RenderWindow, Renderer and both Actors
//
vtkNew<vtkRenderer> renderer;
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->AddRenderer(renderer);
vtkNew<vtkRenderWindowInteractor> interactor;
interactor->SetRenderWindow(renderWindow);
// create spring profile (a circle)
//
vtkNew<vtkPoints> points;
points->InsertPoint(0, 1.0, 0.0, 0.0);
points->InsertPoint(1, 1.0732, 0.0, -0.1768);
points->InsertPoint(2, 1.25, 0.0, -0.25);
points->InsertPoint(3, 1.4268, 0.0, -0.1768);
points->InsertPoint(4, 1.5, 0.0, 0.00);
points->InsertPoint(5, 1.4268, 0.0, 0.1768);
points->InsertPoint(6, 1.25, 0.0, 0.25);
points->InsertPoint(7, 1.0732, 0.0, 0.1768);
vtkNew<vtkCellArray> poly;
poly->InsertNextCell(8); // number of points
poly->InsertCellPoint(0);
poly->InsertCellPoint(1);
poly->InsertCellPoint(2);
poly->InsertCellPoint(3);
poly->InsertCellPoint(4);
poly->InsertCellPoint(5);
poly->InsertCellPoint(6);
poly->InsertCellPoint(7);
vtkNew<vtkPolyData> profile;
profile->SetPoints(points);
profile->SetPolys(poly);
// extrude profile to make spring
//
vtkNew<vtkRotationalExtrusionFilter> extrude;
extrude->SetInputData(profile);
extrude->SetResolution(360);
extrude->SetTranslation(6);
extrude->SetDeltaRadius(1.0);
extrude->SetAngle(2160.0); // six revolutions
vtkNew<vtkPolyDataNormals> normals;
normals->SetInputConnection(extrude->GetOutputPort());
normals->SetFeatureAngle(60);
vtkNew<vtkPolyDataMapper> map;
map->SetInputConnection(normals->GetOutputPort());
vtkNew<vtkActor> spring;
spring->SetMapper(map);
spring->GetProperty()->SetColor(colors->GetColor3d("PowderBlue").GetData());
spring->GetProperty()->SetDiffuse(0.7);
spring->GetProperty()->SetSpecular(0.4);
spring->GetProperty()->SetSpecularPower(20);
spring->GetProperty()->BackfaceCullingOn();
// Add the actors to the renderer, set the background and size
//
renderer->AddActor(spring);
renderer->SetBackground(colors->GetColor3d("Burlywood").GetData());
renderWindow->SetSize(640, 512);
renderWindow->SetWindowName("Spring");
renderer->ResetCamera();
renderer->GetActiveCamera()->Azimuth(90);
renderWindow->Render();
interactor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(Spring)
find_package(VTK COMPONENTS
CommonColor
CommonCore
CommonDataModel
FiltersCore
FiltersModeling
InteractionStyle
RenderingContextOpenGL2
RenderingCore
RenderingFreeType
RenderingGL2PSOpenGL2
RenderingOpenGL2
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "Spring: 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(Spring MACOSX_BUNDLE Spring.cxx )
target_link_libraries(Spring PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS Spring
MODULES ${VTK_LIBRARIES}
)
Download and Build Spring¶
Click here to download Spring and its CMakeLists.txt file. Once the tarball Spring.tar has been downloaded and extracted,
cd Spring/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:
./Spring
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.