This commit is contained in:
gabryon99 2021-09-13 19:37:26 +02:00 committed by gabryon99
parent 6f38a1adc6
commit 8928fbbe6b
1 changed files with 20 additions and 20 deletions

View File

@ -13,26 +13,6 @@ namespace vcg {
template<class MeshType>
class OccupancyGrid {
private:
GridStaticObj<MeshCounter, float> G;
int mn;
int TotalArea;
/**
* Maximum number of meshes that cross a cell
*/
int MaxCount;
/**
* SortedVisual Arcs
*/
std::vector<OGArcInfo> SVA; // SortedVirtual Arcs;
/**
* High level information for each mesh. Mapped by mesh id
*/
std::map<int, OGMeshInfo> VM;
public:
/**
@ -426,6 +406,26 @@ namespace vcg {
TotalArea = ccnt;
}
private:
GridStaticObj<MeshCounter, float> G;
int mn;
int TotalArea;
/**
* Maximum number of meshes that cross a cell
*/
int MaxCount;
/**
* SortedVisual Arcs
*/
std::vector<OGArcInfo> SVA; // SortedVirtual Arcs;
/**
* High level information for each mesh. Mapped by mesh id
*/
std::map<int, OGMeshInfo> VM;
};
}