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/
## Ignore Visual Studio temporary files, build results, and

View File

@ -5,11 +5,13 @@
#endif
#include <math.h>
#include <GL/glut.h>
#include <gl/GL.h>
#include <gl/GLU.h>
#include <gl/GLUT.h>
#define PI 3.14159
#define NUM_MODES 5
#define OMEGA 4.0f
#define PI 3.14159
#define NUM_MODES 5
#define OMEGA 4.0f
class GeometryPlayer

View File

@ -1,4 +1,4 @@
#include <GL/glut.h>
#include <gl/GLUT.h>
#include "geometry.h"
#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.