| 20 | namespace sibr { |
| 21 | |
| 22 | MultiViewInterface::MultiViewInterface() |
| 23 | { |
| 24 | numImgs = 0; |
| 25 | currentLayer = 0; |
| 26 | currentScale = 0; |
| 27 | grid = sibr::Vector2i(4, 4); |
| 28 | hightligthChanged = false; |
| 29 | reproMeshMode = sibr::Mesh::FillRenderMode; |
| 30 | reproMeshBackFace = true; |
| 31 | |
| 32 | imagesViewBase = std::make_shared<MultiViewInterfaceView>(this, MultiViewInterfaceView::ViewType::IMAGES); |
| 33 | meshViewBase = std::make_shared<MultiViewInterfaceView>(this, MultiViewInterfaceView::ViewType::MESH); |
| 34 | } |
| 35 | |
| 36 | void MultiViewInterface::displayLoop(sibr::Window & window, std::function<void(MultiViewInterface*)> f) |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected