Compare commits

..

No commits in common. "master" and "v1.0.0" have entirely different histories.

6 changed files with 7 additions and 15 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
geometry
dist/ dist/
## Ignore Visual Studio temporary files, build results, and ## Ignore Visual Studio temporary files, build results, and

View File

@ -5,7 +5,9 @@
#endif #endif
#include <math.h> #include <math.h>
#include <GL/glut.h> #include <gl/GL.h>
#include <gl/GLU.h>
#include <gl/GLUT.h>
#define PI 3.14159 #define PI 3.14159
#define NUM_MODES 5 #define NUM_MODES 5

View File

@ -1,4 +1,4 @@
#include <GL/glut.h> #include <gl/GLUT.h>
#include "geometry.h" #include "geometry.h"
#define WIN_WIDTH 640 #define WIN_WIDTH 640

View File

@ -1,8 +0,0 @@
CFLAGS=-DGL_SILENCE_DEPRECATION $(shell pkg-config --cflags gl) $(shell pkg-config --cflags glut)
LIBS=$(shell pkg-config --libs gl) $(shell pkg-config --libs glut)
all:
g++ -o geometry ./FemboyGeometry/*.cpp $(CFLAGS) $(LIBS)
clean:
rm -f geometry

View File

@ -1 +0,0 @@
!bin

Binary file not shown.