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

Function Translate

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

@{ * Create a translation matrix and concatenate it with the current * transformation according to PreMultiply or PostMultiply semantics. */

Source from the content-addressed store, hash-verified

68 * transformation according to PreMultiply or PostMultiply semantics.
69 */
70 void Translate(double x, double y, double z) { this->Concatenation->Translate(x, y, z); }
71 void Translate(const double x[3]) { this->Translate(x[0], x[1], x[2]); }
72 void Translate(const float x[3]) { this->Translate(x[0], x[1], x[2]); }
73 ///@}

Callers 3

MoveFocusMethod · 0.50
TranslateMethod · 0.50

Calls 1

TranslateMethod · 0.45

Tested by

no test coverage detected