forked from pissang/claygl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
73 lines (56 loc) · 2.2 KB
/
index.d.ts
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
export * from './typescript/Renderer';
export * from './typescript/Material';
export * from './typescript/Geometry';
export * from './typescript/Shader';
export * from './typescript/Renderer';
export * from './typescript/Node';
export * from './typescript/FrameBuffer';
export * from './typescript/Scene';
export * from './typescript/Texture2D';
export * from './typescript/TextureCube';
export * from './typescript/Texture';
export * from './typescript/Timeline';
export * from './typescript/Mesh';
export * from './typescript/Renderable';
export * from './typescript/math/Vector2';
export * from './typescript/math/Vector3';
export * from './typescript/math/Vector4';
export * from './typescript/math/Quaternion';
export * from './typescript/math/Matrix2';
export * from './typescript/math/Matrix2d';
export * from './typescript/math/Matrix3';
export * from './typescript/math/Matrix4';
export * from './typescript/math/Frustum';
export * from './typescript/math/Plane';
export * from './typescript/math/Value';
export * from './typescript/math/BoundingBox';
export * from './typescript/math/Ray';
export * from './typescript/application';
export * from './typescript/createCompositor';
// https://stackoverflow.com/questions/30357634/how-do-i-use-namespaces-with-typescript-external-modules
import * as light from './typescript/light/index';
export { light }
import * as geometry from './typescript/geometry/index';
export { geometry }
import * as core from './typescript/core/index';
export { core }
import * as camera from './typescript/camera/index';
export { camera }
import * as async from './typescript/async/index';
export { async }
import * as animation from './typescript/animation/index';
export { animation }
import * as compositor from './typescript/compositor/index';
export { compositor }
import * as particle from './typescript/particle/index';
export { particle }
import * as plugin from './typescript/plugin/index';
export { plugin }
import * as prePass from './typescript/prePass/index';
export { prePass }
import * as shader from './typescript/shader/index';
export { shader }
import * as util from './typescript/util/index';
export { util }
// import * as math from './typescript/math/index';
// export { math }