| 206 | } |
| 207 | |
| 208 | void |
| 209 | TrackerContext::inputChanged(int inputNb) |
| 210 | { |
| 211 | // If the cornerPin from points have never been computed, set them |
| 212 | KnobBoolPtr fromPointsSetOnceKnob = _imp->cornerPinFromPointsSetOnceAutomatically.lock(); |
| 213 | |
| 214 | if ( !fromPointsSetOnceKnob->getValue() ) { |
| 215 | setFromPointsToInputRod(); |
| 216 | fromPointsSetOnceKnob->setValue(true); |
| 217 | } |
| 218 | s_onNodeInputChanged(inputNb); |
| 219 | } |
| 220 | |
| 221 | std::string |
| 222 | TrackerContext::generateUniqueTrackName(const std::string& baseName) |
no test coverage detected