TextOrigin
vtk-examples/Cxx/Annotation/TextOrigin
Description¶
This example demonstrates the use of vtkVectorText and vtkFollower. vtkVectorText is used to create 3D annotation. vtkFollower is used to position the 3D text and to ensure that the text always faces the renderer's active camera (i.e., the text is always readable).
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
TextOrigin.cxx
// This example demonstrates the use of vtkVectorText and vtkFollower.
// vtkVectorText is used to create 3D annotation. vtkFollower is used to
// position the 3D text and to ensure that the text always faces the
// renderer's active camera (i.e., the text is always readable).
#include <vtkActor.h>
#include <vtkAxes.h>
#include <vtkCamera.h>
#include <vtkFollower.h>
#include <vtkInteractorStyleTrackballCamera.h>
#include <vtkNamedColors.h>
#include <vtkNew.h>
#include <vtkPolyDataMapper.h>
#include <vtkProperty.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkRenderer.h>
#include <vtkVectorText.h>
int main(int, char*[])
{
vtkNew<vtkNamedColors> colors;
// Create the axes and the associated mapper and actor.
vtkNew<vtkAxes> axes;
axes->SetOrigin(0, 0, 0);
vtkNew<vtkPolyDataMapper> axesMapper;
axesMapper->SetInputConnection(axes->GetOutputPort());
vtkNew<vtkActor> axesActor;
axesActor->SetMapper(axesMapper);
// Create the 3D text and the associated mapper and follower (a type of
// actor). Position the text so it is displayed over the origin of the
// axes.
vtkNew<vtkVectorText> atext;
atext->SetText("Origin");
vtkNew<vtkPolyDataMapper> textMapper;
textMapper->SetInputConnection(atext->GetOutputPort());
vtkNew<vtkFollower> textActor;
textActor->SetMapper(textMapper);
textActor->SetScale(0.2, 0.2, 0.2);
textActor->AddPosition(0, -0.1, 0);
textActor->GetProperty()->SetColor(colors->GetColor3d("Peacock").GetData());
// Create the Renderer, RenderWindow, and RenderWindowInteractor.
vtkNew<vtkRenderer> renderer;
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->AddRenderer(renderer);
renderWindow->SetSize(640, 480);
vtkNew<vtkRenderWindowInteractor> interactor;
interactor->SetRenderWindow(renderWindow);
vtkNew<vtkInteractorStyleTrackballCamera> style;
interactor->SetInteractorStyle(style);
// Add the actors to the renderer.
renderer->AddActor(axesActor);
renderer->AddActor(textActor);
renderer->SetBackground(colors->GetColor3d("Silver").GetData());
// Zoom in closer.
renderer->ResetCamera();
renderer->GetActiveCamera()->Zoom(1.6);
// Reset the clipping range of the camera; set the camera of the
// follower; render.
renderer->ResetCameraClippingRange();
textActor->SetCamera(renderer->GetActiveCamera());
interactor->Initialize();
renderWindow->SetWindowName("TextOrigin");
renderWindow->Render();
interactor->Start();
return EXIT_SUCCESS;
}
CMakeLists.txt¶
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
project(TextOrigin)
find_package(VTK COMPONENTS
)
if (NOT VTK_FOUND)
message(FATAL_ERROR "TextOrigin: 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(TextOrigin MACOSX_BUNDLE TextOrigin.cxx )
target_link_libraries(TextOrigin PRIVATE ${VTK_LIBRARIES}
)
# vtk_module_autoinit is needed
vtk_module_autoinit(
TARGETS TextOrigin
MODULES ${VTK_LIBRARIES}
)
Download and Build TextOrigin¶
Click here to download TextOrigin and its CMakeLists.txt file. Once the tarball TextOrigin.tar has been downloaded and extracted,
cd TextOrigin/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:
./TextOrigin
WINDOWS USERS
Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.