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

Function Translate

Common/Transforms/vtkPerspectiveTransform.h:156–156  ·  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

154 * transformation according to PreMultiply or PostMultiply semantics.
155 */
156 void Translate(double x, double y, double z) { this->Concatenation->Translate(x, y, z); }
157 void Translate(const double x[3]) { this->Translate(x[0], x[1], x[2]); }
158 void Translate(const float x[3]) { this->Translate(x[0], x[1], x[2]); }
159 ///@}

Callers

nothing calls this directly

Calls 1

TranslateMethod · 0.45

Tested by

no test coverage detected