@{ * Create a translation matrix and concatenate it with the current * transformation according to PreMultiply or PostMultiply semantics. */
| 68 | * transformation according to PreMultiply or PostMultiply semantics. |
| 69 | */ |
| 70 | void Translate(double x, double y, double z) { this->Concatenation->Translate(x, y, z); } |
| 71 | void Translate(const double x[3]) { this->Translate(x[0], x[1], x[2]); } |
| 72 | void Translate(const float x[3]) { this->Translate(x[0], x[1], x[2]); } |
| 73 | ///@} |
no test coverage detected