| 33 | Transform::Transform() {} |
| 34 | |
| 35 | void Transform::setTranslation(const float3& translation) |
| 36 | { |
| 37 | mTranslation = translation; |
| 38 | mDirty = true; |
| 39 | } |
| 40 | |
| 41 | void Transform::setScaling(const float3& scaling) |
| 42 | { |
no outgoing calls
no test coverage detected