SpherePackingScenarioGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Box.h
Go to the documentation of this file.
00001 /*
00002  * Box.h
00003  *
00004  *  Created on: 2011-6-15
00005  *      Author: asu
00006  */
00007 
00008 #ifndef LS2_BOX_H_
00009 #define LS2_BOX_H_
00010 #include <iostream>
00011 #include <ostream>
00012 #include <fstream>
00013 #include "algorithms/geometries/BoxGeometry.h"
00014 #include "tarch/la/Vector.h"
00015 #include "GlobalValue.h"
00016 namespace algorithms{
00017 namespace ls2{
00018 class Box;
00019 }/* close namespace ls2 */
00020 }/* close namespace algorithms */
00021 
00022 class algorithms::ls2::Box :public algorithms::geometries::BoxGeometry {
00023 //
00024 public:
00025         Box();
00026         virtual ~Box();
00027         double getSize() const;
00028         void setSize(double size);
00029 private:
00030         double _size;
00031         //int Optimalngrids(double maxpf);
00032 };
00033 
00034 #endif /* BOX_H_ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines