SpherePackingScenarioGenerator
|
00001 /* 00002 * GhostSphere.h 00003 * 00004 * Created on: 2011-7-9 00005 * Author: Tan 00006 */ 00007 00008 #ifndef ADD_GHOSTSPHERE_H_ 00009 #define ADD_GHOSTSPHERE_H_ 00010 #include "algorithms/AbstractSpherePacking.h" 00011 #include "algorithms/ls2/RandomPacking.h" 00012 namespace algorithms { 00013 class GhostSphere; 00014 } 00015 /* 00016 * 00017 */ 00018 class algorithms::GhostSphere:public algorithms::AbstractSpherePacking{ 00019 public: 00020 GhostSphere(algorithms::ls2::RandomPacking SpherePacking); 00021 virtual ~GhostSphere(); 00022 void generate(); 00023 void AddGhostSphere(double x,double y,double z,double r); 00024 }; 00025 00026 #endif /* GHOSTSPHERE_H_ */