fixes
This commit is contained in:
parent
6f38a1adc6
commit
8928fbbe6b
|
@ -13,26 +13,6 @@ namespace vcg {
|
||||||
template<class MeshType>
|
template<class MeshType>
|
||||||
class OccupancyGrid {
|
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:
|
public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -426,6 +406,26 @@ namespace vcg {
|
||||||
TotalArea = ccnt;
|
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;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue