@{ * Create a translation matrix and concatenate it with the current * transformation according to PreMultiply or PostMultiply semantics. */
| 59 | * transformation according to PreMultiply or PostMultiply semantics. |
| 60 | */ |
| 61 | void Translate(double x, double y, double z) { this->Concatenation->Translate(x, y, z); } |
| 62 | void Translate(const double x[3]) { this->Translate(x[0], x[1], x[2]); } |
| 63 | void Translate(const float x[3]) { this->Translate(x[0], x[1], x[2]); } |
| 64 | ///@} |