--- trunk/src/math/ConvexHull.hpp 2008/10/20 19:36:32 1307 +++ trunk/src/math/ConvexHull.hpp 2008/10/21 16:44:00 1308 @@ -44,7 +44,7 @@ * * Created by Charles F. Vardeman II on 11 Dec 2006. * @author Charles F. Vardeman II - * @version $Id: ConvexHull.hpp,v 1.14 2008-10-20 19:36:32 chuckv Exp $ + * @version $Id: ConvexHull.hpp,v 1.15 2008-10-21 16:44:00 chuckv Exp $ * */ @@ -88,7 +88,7 @@ namespace oopse { int getNs(){return Ns_;} //Number of Surface Atoms RealType getVolume(){return volume_;} //Total Volume inclosed by Hull std::vector< StuntDouble* > getSurfaceAtoms(){return surfaceSDs_;} //Returns a list of surface atoms - std::vector getMesh(){return Triangles_;} + std::vector getMesh(){return Triangles_;} int getNMeshElements() {return nTriangles_;} void printHull(const std::string& geomFileName); protected: @@ -101,7 +101,7 @@ namespace oopse { const std::string options_; private: - std::vector Triangles_; + std::vector Triangles_; #ifdef IS_MPI int* NstoProc_;