Structured the void center extraction

This commit is contained in:
Your Name 2011-02-17 11:52:16 -05:00
parent 5c9500628c
commit 36aa91c064
2 changed files with 23 additions and 3 deletions

View file

@ -20,9 +20,11 @@ struct ZobovRep
{
std::vector<ZobovZone> allZones;
std::vector<ZobovVoid> allVoids;
std::vector<float> particleVolume;
};
bool loadZobov(const char *descName,
const char *adjName, const char *volName, ZobovRep& z);
const char *adjName, const char *voidName,
const char *volName, ZobovRep& z);
#endif