summaryrefslogtreecommitdiffstats
path: root/hacks/glx/polyhedra.h
diff options
context:
space:
mode:
authorSimon Rettberg2024-09-06 14:42:37 +0200
committerSimon Rettberg2024-09-06 14:42:37 +0200
commitbadef32037f52f79abc1f1440b786cd71afdf270 (patch)
tree412b792d4cab4a7a110db82fcf74fe8a1ac55ec1 /hacks/glx/polyhedra.h
parentDelete pre-6.00 files (diff)
downloadxscreensaver-master.tar.gz
xscreensaver-master.tar.xz
xscreensaver-master.zip
Diffstat (limited to 'hacks/glx/polyhedra.h')
-rw-r--r--hacks/glx/polyhedra.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/hacks/glx/polyhedra.h b/hacks/glx/polyhedra.h
deleted file mode 100644
index ace4ac7..0000000
--- a/hacks/glx/polyhedra.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* xscreensaver, Copyright (c) 2004 Jamie Zawinski <jwz@jwz.org>
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that
- * copyright notice and this permission notice appear in supporting
- * documentation. No representations are made about the suitability of this
- * software for any purpose. It is provided "as is" without express or
- * implied warranty.
- */
-
-#ifndef __POLYHEDRA_H__
-#define __POLYHEDRA_H__
-
-typedef struct {
- double x, y, z;
-} point;
-
-typedef struct {
- int color;
- int npoints;
- int *points; /* indexes into point list */
-} face;
-
-typedef struct {
-
- int number;
- char *wythoff;
- char *name;
- char *dual;
- char *config;
- char *group;
- char *class;
-
- int nfaces;
- int logical_faces;
- int logical_vertices;
- int nedges;
- int npoints;
- int density;
- int chi;
-
- point *points;
- face *faces;
-
-} polyhedron;
-
-
-extern int construct_polyhedra (polyhedron ***polyhedra_ret);
-extern void free_polyhedron (polyhedron *p);
-
-#endif /* __POLYHEDRA_H__ */