@{ * Create a translation matrix and concatenate it with the current * transformation according to PreMultiply or PostMultiply semantics. */
| 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 | ///@} |