| 2653 | } |
| 2654 | |
| 2655 | void |
| 2656 | TrackerContextPrivate::onTransformSolverWatcherProgress(int progress) |
| 2657 | { |
| 2658 | assert(lastSolveRequest.tWatcher); |
| 2659 | NodePtr thisNode = node.lock(); |
| 2660 | double min = lastSolveRequest.tWatcher->progressMinimum(); |
| 2661 | double max = lastSolveRequest.tWatcher->progressMaximum(); |
| 2662 | double p = (progress - min) / (max - min); |
| 2663 | thisNode->getApp()->progressUpdate(thisNode, p); |
| 2664 | } |
| 2665 | |
| 2666 | void |
| 2667 | TrackerContextPrivate::setSolverParamsEnabled(bool enabled) |
nothing calls this directly
no test coverage detected