diff --git a/World.hh b/World.hh new file mode 100644 index 0000000..55b5212 --- /dev/null +++ b/World.hh @@ -0,0 +1,57 @@ +#pragma once + + +#include +#include +using namespace std; + +class world { + private: + int sea_lvl = 0, size; + double X_elevation,Y_elevation,Z_elevation; + double Coordinates[][3]; + + public: + + world(double x = 0, double y = 0, double z = 0) : X_elevation(x), Y_elevation(y),Z_elevation(sea_lvl - z) { + + } + friend world draw_world(world a){ + return 0; + } + + friend world Coordinates_Matrix(world a) { + for (int loop_1=0; loop_1