Tue, 07 Jun 2022 20:44:19 +0300
Replaced the tab widget with an MDI area
#pragma once #include "main.h" #include "model.h" #include "gl/common.h" struct GetPolygonsContext { ModelId modelId; class DocumentManager* documents; }; struct PolygonCache { std::vector<gl::Polygon> cachedPolygons; bool needRecache = true; }; const std::vector<gl::Polygon>& getCachedPolygons( PolygonCache* cache, Model* model, class DocumentManager* documents);