Bounding boxes work
[mixamesh.git] / package.lisp
blob03cd58324bb55caa2f006b63ef1940eae1c929fd
2 (in-package :cl-user)
4 (defpackage :mixamesh
5 (:use :cl :iterate :cl-tuples)
6 (:export #:vertex-array
7 #:face-array
8 #:base-mesh
9 #:simple-mesh
10 #:make-mesh
11 #:mesh
12 #:textured-mesh
13 #:coloured-mesh
14 #:def-mesh-type
15 #:faces-of
16 #:vertices-of
17 #:colours-of
18 #:uvs-of
19 #:*textures*
20 #:*meshes*
21 #:*compiled-meshes*
22 #:compile-mesh
23 #:compiled-mesh
24 #:element-count-of
25 #:triangle-buffer-of
26 #:vertex-buffer-of
27 #:*bounding-boxes*
28 #:bound-mesh
29 #:box-of))
31 (in-package :mixamesh)