| 335 | } |
| 336 | |
| 337 | Mat3F NetworkedAnimator::groupTransformation(StringList const& transformationGroups) const { |
| 338 | auto mat = Mat3F::identity(); |
| 339 | for (auto const& tg : transformationGroups) |
| 340 | mat = m_transformationGroups.get(tg).affineTransform() * mat; |
| 341 | return mat; |
| 342 | } |
| 343 | |
| 344 | Mat3F NetworkedAnimator::partTransformation(String const& partName) const { |
| 345 | auto const& part = m_animatedParts.activePart(partName); |
nothing calls this directly
no test coverage detected