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

Function Scale

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

@{ * Create a scale matrix (i.e. set the diagonal elements to x, y, z) * and concatenate it with the current transformation according to * PreMultiply or PostMultiply semantics. */

Source from the content-addressed store, hash-verified

111 * PreMultiply or PostMultiply semantics.
112 */
113 void Scale(double x, double y, double z) { this->Concatenation->Scale(x, y, z); }
114 void Scale(const double s[3]) { this->Scale(s[0], s[1], s[2]); }
115 void Scale(const float s[3]) { this->Scale(s[0], s[1], s[2]); }
116 ///@}

Callers 2

OnKeyPressMethod · 0.50

Calls 1

ScaleMethod · 0.45

Tested by 1

OnKeyPressMethod · 0.40