-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.lisp
107 lines (89 loc) · 2.57 KB
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
(in-package :cl-user)
(defpackage :cl-tuples
(:use :cl :alexandria :iterate)
(:nicknames :tuples)
(:export make-tuple-symbol
tuple-typep
tuple-size
tuple-element-type
tuple-elelents
tuple-gensyms
tuple-typespec
tuple-typespec*
tuple-typespec**
def-tuple-type
def-tuple-op
fast-float
fast-pi
vector2d-dot*
vector2d-mag-square*
vector2d-length*
vector2d-normal*
vector2d-vertex2d*
vector2d-component-product*
vector2d-scale*
vertex2d-vector2d*
vector3d-component-product*
vector3d-scale*
vector3d-dot*
vector3d-sum*
vector3d-difference*
vector3d-mag-square*
vector3d-length*
vector3d-normal*
vector3d-cross*
vector3d-vertex3d*
vertex3d-vector3d*
vertex3d-distance*
delta-vector3d*
transpose-matrix33*
identity-matrix44*
translation-matrix44*
scaling-matrix44*
vertex3d-translation-matrix44*
rotatex-matrix44*
rotatey-matrix44*
rotatez-matrix44*
transpose-matrix44*
matrix22-determinant*
matrix33-determinant*
matrix44-determinant*
matrix22-scale*
matrix33-scale*
matrix44-scale*
cofactor-matrix22*
cofactor-matrix33*
cofactor-matrix44*
inverted-matrix22*
inverted-matrix33*
inverted-matrix44*
transform-vertex2d*
transform-vertex3d*
transform-vector2d*
transform-vector3d*
matrix33-product*
matrix44-product*
matrix44-matrix33*
matrix33-matrix44*
quaternion-sum*
quaternion-normalize*
quaternion-scale*
quaternion-conjugate*
quaternion-dot*
quaternion-mag-square*
quaternion-mag*
quaternion-inverse*
quaternion-product*
quaternion-matrix33*
angle-axis-quaternion*
quaternion-transform-vector3d*
vector3d-quaternion*
width
height
disable-tuples-syntax
locally-disable-tuples-syntax
enable-tuples-syntax
locally-enable-tuples-syntax
file-enable-tuples-syntax
restore-tuples-syntax-state
))