-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.js
104 lines (93 loc) · 2 KB
/
packages.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
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
export default [
"#core",
"https://github.com/pex-gl/pex-context",
"https://github.com/pex-gl/pex-renderer",
"https://github.com/pex-gl/pex-gl",
"https://github.com/pex-gl/pex-math",
"https://github.com/pex-gl/pex-color",
"https://github.com/pex-gl/pex-random",
"https://github.com/pex-gl/pex-io",
"https://github.com/pex-gl/pex-cam",
"https://github.com/pex-gl/pex-gui",
"https://github.com/pex-gl/pex-geom",
"#geom/primitives",
"primitive-geometry",
"primitive-box",
"primitive-capsule",
"primitive-circle",
"primitive-cylinder",
"primitive-cube",
"primitive-icosphere",
"primitive-plane",
"primitive-quad",
"primitive-rounded-cube",
"primitive-sphere",
"primitive-torus",
"primitive-ellipsoid",
"primitive-octasphere",
"geo-arc",
"#geom/3d",
"geom-builder",
"geom-center-and-normalize",
"geom-edges",
"geom-half-edge",
"geom-merge",
"geom-normals",
"geom-split-vertices",
"geom-revolve",
"geom-sweep",
"geom-triangulate",
"spline-points",
"latlon-to-xyz",
"xyz-to-latlon",
"ray-geom-intersections",
"frenet-serret-frames",
"path-tangents",
"vector-field",
"#geom/2d",
"hammersley",
"fit-rect",
"perspective-grid",
"grid-cells",
"#algo/3d",
"space-colonization",
"spatial-index",
"#canvas",
"canvas-context",
"canvas-pattern",
"canvas-record",
"canvas-screenshot",
"canvas-thumbnail-cache",
"canvas-tint-image",
"#math",
"interpolate-angle",
"interpolate-arrays",
"concat-typed-array",
"interleave-typed-array",
"eases",
"lerp",
"eerp",
"#color",
"cosine-gradient",
"#io",
"parse-dds",
"parse-hdr",
"geom-parse-obj",
"geom-export-obj",
"#glsl",
"glsl-conditionals",
"glsl-constants",
"glsl-rotate",
"glsl-smaa",
"glsl-tone-map",
"#sys",
"raf-perf",
"is-browser",
"is-plask",
"is-electron-renderer",
"is-mobile",
"#tutorials",
"https://github.com/pex-gl/pex-examples",
"https://github.com/vorg/pragmatic-pbr",
// "https://github.com/vorg/pex-experiments",
];