| 437 | } |
| 438 | |
| 439 | void Object::SetTranslation(const vec3 &trans) { |
| 440 | if (translation_ != trans) { |
| 441 | translation_ = trans; |
| 442 | UpdateTransform(); |
| 443 | Moved(Object::kTranslate); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | void Object::SetScale(const vec3 &trans) { |
| 448 | if (scale_ != trans) { |
no outgoing calls
no test coverage detected