--- trunk/src/math/ConvexHull.hpp 2013/06/16 15:15:42 1879 +++ trunk/src/math/ConvexHull.hpp 2015/02/20 15:12:07 2056 @@ -71,25 +71,23 @@ namespace OpenMD { void computeHull( std::vector bodydoubles ); /* Total area of Hull*/ - RealType getArea(){return area_;} + RealType getArea(){ return area_;} /* Total Volume enclosed by Hull */ RealType getVolume(){ return volume_; } - /* Bounding Box for Hull sites */ - Mat3x3d getBoundingBox(){ return boundingBox_; } - std::vector getMesh(){return Triangles_;} void printHull(const std::string& geomFileName); protected: - RealType volume_; - RealType area_; - Mat3x3d boundingBox_; - int dim_; const std::string options_; + int dim_; private: + // These variables are private so that each new hull returns + // information about itself. + RealType volume_; + RealType area_; std::vector Triangles_; }; }