commit 26c3951678ef2ede7c59dea437703dda4bcf4a06 parent d103ce96615e9230eb28a960836d93ec45e07e95 Author: Christos Margiolis <christos@margiolis.net> Date: Tue, 14 Apr 2020 20:46:41 +0300 edited README Diffstat:
M | Makefile | | | 0 | |
M | README.md | | | 1 | - |
M | obj/main.o | | | 0 | |
M | obj/plane.o | | | 0 | |
M | src/main.cpp | | | 0 | |
M | src/plane.cpp | | | 0 | |
M | src/plane.h | | | 12 | ++++++------ |
7 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/Makefile b/Makefile diff --git a/README.md b/README.md @@ -1,6 +1,5 @@ # graphcurses -**UNDER CONSTRUCTION** A simple ncurses graph generator. ![Screenshot_20200308_212613](https://user-images.githubusercontent.com/54286563/76169715-b3994d80-6183-11ea-97e0-4003239ecfe3.png) diff --git a/obj/main.o b/obj/main.o Binary files differ. diff --git a/obj/plane.o b/obj/plane.o Binary files differ. diff --git a/src/main.cpp b/src/main.cpp diff --git a/src/plane.cpp b/src/plane.cpp diff --git a/src/plane.h b/src/plane.h @@ -7,12 +7,12 @@ #include <matheval.h> #include <ncurses.h> -#define XMIN_PLANE -2.0f*M_PI -#define XMAX_PLANE 2.0f*M_PI -#define YMIN_PLANE -M_PI -#define YMAX_PLANE M_PI -#define XSCALE_PLANE 1.0f -#define YSCALE_PLANE 1.0f +#define XMIN_PLANE -2.0f*M_PI +#define XMAX_PLANE 2.0f*M_PI +#define YMIN_PLANE -M_PI +#define YMAX_PLANE M_PI +#define XSCALE_PLANE 1.0f +#define YSCALE_PLANE 1.0f class Plane {