00001 #include "gravitation.hh"
00002 #include "register.hh"
00003 #include "abstractworld.hh"
00004 #include "mass.hh"
00005 #include "element.hh"
00006
00007 namespace anoid {
00008 namespace plugin {
00009
00010 using namespace simple;
00011 using namespace base;
00012
00013 Vector Gravitation::getForce() {
00014 return O;
00015 }
00016
00017 Vector Gravitation::getApplicationPoint() {
00018 AbstractWorld *w = getWorld();
00019 vector<Element*>::iterator i;
00020 return O;
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 }
00045
00046 Register(Gravitation)
00047
00048 };
00049 };