| 449 | } |
| 450 | |
| 451 | MotionSystem MotionTransform::GetMotionSystem() const { |
| 452 | if (IsStatic()) |
| 453 | return MotionSystem(transforms.front()); |
| 454 | else |
| 455 | return MotionSystem(times, transforms); |
| 456 | } |
| 457 | |
| 458 | // Concatenates two MotionTransforms. |
| 459 | // Extract the unique knots from input MotionTransform |
no test coverage detected