| 406 | } |
| 407 | |
| 408 | void EngineWorker::setSelection(RealVector2D const& startPos, RealVector2D const& endPos) |
| 409 | { |
| 410 | EngineWorkerGuard access(this); |
| 411 | _simulationCudaFacade->setSelection(AreaSelectionData{{startPos.x, startPos.y}, {endPos.x, endPos.y}}); |
| 412 | } |
| 413 | |
| 414 | void EngineWorker::removeSelection() |
| 415 | { |
no outgoing calls
no test coverage detected