Cameron Lowell Palmer
Cameron Lowell Palmer

Reputation: 22245

VTK: Aligning two actors

I am experimenting and currently have two objects in an iOS app using the VES/VTK framework and can move the vesActors in the scene. What I don't understand is how I can take the position of one object and apply it to a second object. In other words make two planes parallel basically planar homography within the VTK framework using actors, mappers, and/or transforms. Are there any examples of this?

Upvotes: 0

Views: 814

Answers (1)

David Doria
David Doria

Reputation: 10273

If you can pick 3 points on/relative to your planes, you can use vtkLandmarkTransform (http://www.vtk.org/doc/nightly/html/classvtkLandmarkTransform.html), as demonstrated here: http://www.vtk.org/Wiki/VTK/Examples/Cxx/PolyData/AlignFrames

Upvotes: 2

Related Questions