Mon, 27 Jun 2022 21:25:22 +0300
Add missing file
#pragma once #include "src/basics.h" #include "src/model.h" #include "src/gl/common.h" template<typename T> struct WithId : T { ModelId id; }; struct GetPolygonsContext { ModelId modelId; class DocumentManager* documents; }; struct PolygonCache { using vector_type = std::vector<WithId<PolygonElement>>; vector_type cachedPolygons; bool needRecache = true; }; const PolygonCache::vector_type* getCachedPolygons( PolygonCache* cache, Model* model, class DocumentManager* documents); PolygonCache* findPolygonCacheForModel(Model* model, DocumentManager* context);