@{ * 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. */
| 197 | * PreMultiply or PostMultiply semantics. |
| 198 | */ |
| 199 | void Scale(double x, double y, double z) { this->Concatenation->Scale(x, y, z); } |
| 200 | void Scale(const double s[3]) { this->Scale(s[0], s[1], s[2]); } |
| 201 | void Scale(const float s[3]) { this->Scale(s[0], s[1], s[2]); } |
| 202 | ///@} |