aboutsummaryrefslogtreecommitdiff
path: root/dave/plot_lighthouse/glutil.h
diff options
context:
space:
mode:
authorultramn <dchapm2@umbc.edu>2017-02-04 20:03:12 -0800
committerultramn <dchapm2@umbc.edu>2017-02-04 20:03:12 -0800
commit2afbb0313dafe3f52a38ee2061cb1de8043d16e6 (patch)
tree305a3ed5762b3e17e9290b387e08a5157af982f3 /dave/plot_lighthouse/glutil.h
parent4c44cd91e2190ca55e4bffca6491b4171b3bbdca (diff)
downloadlibsurvive-2afbb0313dafe3f52a38ee2061cb1de8043d16e6.tar.gz
libsurvive-2afbb0313dafe3f52a38ee2061cb1de8043d16e6.tar.bz2
Moved plot_lighthouse to the tools folder
Diffstat (limited to 'dave/plot_lighthouse/glutil.h')
-rw-r--r--dave/plot_lighthouse/glutil.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/dave/plot_lighthouse/glutil.h b/dave/plot_lighthouse/glutil.h
deleted file mode 100644
index 1014506..0000000
--- a/dave/plot_lighthouse/glutil.h
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// glutil.h
-//
-//
-// Created by user on 2/4/17.
-//
-//
-
-#ifndef glutil_h
-#define glutil_h
-
-#include <stdio.h>
-#include "quaternion.h"
-
-#include <stdio.h>
-#ifdef __APPLE__
-#include <OpenGL/gl.h> // The GL Header File
-#include <GLUT/glut.h> // The GL Utility Toolkit (Glut) Header
-#else
-#include <GL/gl.h>
-#include <GL/glu.h>
-#endif
-
-void DrawGrid(
- float minX, float maxX,
- float minY, float maxY,
- float minZ, float maxZ,
- float stepX, float stepY, float stepZ);
-
-void DrawCoordinateSystem(
- float x, float y, float z,
- float qx, float qy, float qz, float qr);
-
-#endif /* glutil_h */