MCPcopy Create free account
hub / github.com/Kitware/VTK / GetOrientation

Function GetOrientation

Common/Transforms/vtkTransform.h:233–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231 */
232 void GetOrientation(double orient[3]);
233 void GetOrientation(float orient[3])
234 {
235 double temp[3];
236 this->GetOrientation(temp);
237 orient[0] = static_cast<float>(temp[0]);
238 orient[1] = static_cast<float>(temp[1]);
239 orient[2] = static_cast<float>(temp[2]);
240 }
241 double* GetOrientation() VTK_SIZEHINT(3)
242 {
243 this->GetOrientation(this->ReturnValue);

Callers 3

BuildRepresentationMethod · 0.50
ShowBillboardMethod · 0.50

Calls 1

GetOrientationMethod · 0.45

Tested by

no test coverage detected