Updated for new cl-tuples
[mixamesh.git] / package.lisp
blob4c5fb516afb08d2aadc2aebac8f4a5b1fc2f12a9
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 #:make-texture
21 #:width-of
22 #:height-of
23 #:map-of
24 #:*meshes*
25 #:*compiled-meshes*
26 #:compile-mesh
27 #:compiled-mesh
28 #:textured-compiled-mesh
29 #:element-count-of
30 #:triangle-buffer-of
31 #:vertex-buffer-of
32 #:*bounding-boxes*
33 #:bound-mesh
34 #:uv-buffer-of
35 #:box-of
36 #:material
37 #:texture
38 #:texture-of))
40 (in-package :mixamesh)