-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.js
33 lines (33 loc) · 1.17 KB
/
index.js
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
module.exports = {
add: require('./add')
, create: require('./create')
, clone: require('./clone')
, copy: require('./copy')
, identity: require('./identity')
, transpose: require('./transpose')
, invert: require('./invert')
, adjoint: require('./adjoint')
, determinant: require('./determinant')
, multiply: require('./multiply')
, translate: require('./translate')
, scale: require('./scale')
, rotate: require('./rotate')
, rotateX: require('./rotateX')
, rotateY: require('./rotateY')
, rotateZ: require('./rotateZ')
, fromRotation: require('./fromRotation')
, fromRotationTranslation: require('./fromRotationTranslation')
, fromScaling: require('./fromScaling')
, fromTranslation: require('./fromTranslation')
, fromXRotation: require('./fromXRotation')
, fromYRotation: require('./fromYRotation')
, fromZRotation: require('./fromZRotation')
, fromQuat: require('./fromQuat')
, frustum: require('./frustum')
, perspective: require('./perspective')
, perspectiveFromFieldOfView: require('./perspectiveFromFieldOfView')
, ortho: require('./ortho')
, lookAt: require('./lookAt')
, str: require('./str')
, sub: require('./sub')
}