SpherePackingScenarioGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
BoxGeometry.h
Go to the documentation of this file.
00001 /*
00002  * BoxGeometry.h
00003  *
00004  *  Created on: 2011-5-2
00005  *      Author: asu
00006  */
00007 
00008 #ifndef BoxGeometry_H_
00009 #define BoxGeometry_H_
00010 namespace algorithms{
00011         namespace geometries{
00012         class BoxGeometry;
00013         }
00014 }
00015 class algorithms::geometries::BoxGeometry {
00016 public:
00017         BoxGeometry();
00018         BoxGeometry(double side);
00019         virtual ~BoxGeometry();
00020         double getSide() const;
00021         void setSide(double value);
00022 private:
00023         double _side;
00024 };
00025 
00026 #endif /* BoxGeometry_H_ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines