summaryrefslogtreecommitdiffstats
path: root/hacks/glx/quickhull.h
diff options
context:
space:
mode:
Diffstat (limited to 'hacks/glx/quickhull.h')
-rw-r--r--hacks/glx/quickhull.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/hacks/glx/quickhull.h b/hacks/glx/quickhull.h
index 0dd0faa..161b74e 100644
--- a/hacks/glx/quickhull.h
+++ b/hacks/glx/quickhull.h
@@ -22,14 +22,9 @@
#define __QUICKHULL_H__
typedef struct qh_vertex {
- union {
- double v[3];
- struct {
- double x;
- double y;
- double z;
- };
- };
+ double x;
+ double y;
+ double z;
} qh_vertex_t;
typedef qh_vertex_t qh_vec3_t;