STRING ANIMATION******************************************/
| 6379 | |
| 6380 | /***************************STRING ANIMATION******************************************/ |
| 6381 | void |
| 6382 | AnimatingKnobStringHelper::cloneExtraData(KnobI* other, |
| 6383 | int /*dimension*/, |
| 6384 | int /*otherDimension*/) |
| 6385 | { |
| 6386 | AnimatingKnobStringHelper* isAnimatedString = dynamic_cast<AnimatingKnobStringHelper*>(other); |
| 6387 | |
| 6388 | if (isAnimatedString) { |
| 6389 | _animation->clone( isAnimatedString->getAnimation() ); |
| 6390 | } |
| 6391 | } |
| 6392 | |
| 6393 | bool |
| 6394 | AnimatingKnobStringHelper::cloneExtraDataAndCheckIfChanged(KnobI* other, |
nothing calls this directly
no test coverage detected