| 2201 | } |
| 2202 | |
| 2203 | void |
| 2204 | TrackerPanelV1::clearAllAnimationForSelection() |
| 2205 | { |
| 2206 | std::list<Node*> selectedInstances; |
| 2207 | |
| 2208 | getSelectedInstances(&selectedInstances); |
| 2209 | for (std::list<Node*>::const_iterator it = selectedInstances.begin(); it != selectedInstances.end(); ++it) { |
| 2210 | const std::vector<KnobIPtr> & knobs = (*it)->getKnobs(); |
| 2211 | for (U32 i = 0; i < knobs.size(); ++i) { |
| 2212 | for (int dim = 0; dim < knobs[i]->getDimension(); ++dim) { |
| 2213 | knobs[i]->removeAnimation(ViewSpec::all(), dim); |
| 2214 | } |
| 2215 | } |
| 2216 | } |
| 2217 | } |
| 2218 | |
| 2219 | void |
| 2220 | TrackerPanelV1::clearBackwardAnimationForSelection() |
nothing calls this directly
no test coverage detected