-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tags
3538 lines (3538 loc) · 409 KB
/
.tags
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /[email protected]/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
AUDIO_BOSS js/audio/AudioBoss.js /^var AUDIO_BOSS = function() {$/;" c
AUDIO_BOSS.getHowl js/audio/AudioBoss.js /^ function getHowl(urls){$/;" f
AUDIO_BOSS.loop js/audio/AudioBoss.js /^AUDIO_BOSS.prototype.loop = function(url) {$/;" m
Accessor js/loaders/ColladaLoader.js /^ function Accessor() {$/;" c
Accessor.parse js/loaders/ColladaLoader.js /^ Accessor.prototype.parse = function ( element ) {$/;" m
AmbientLight js/three/lights/AmbientLight.js /^function AmbientLight( color, intensity ) {$/;" c
Animation js/loaders/ColladaLoader.js /^ function Animation() {$/;" c
Animation.parse js/loaders/ColladaLoader.js /^ Animation.prototype.parse = function ( element ) {$/;" m
AnimationAction js/three/animation/AnimationAction.js /^function AnimationAction( mixer, clip, localRoot ) {$/;" c
AnimationAction.interpolantSettings.endingEnd js/three/animation/AnimationAction.js /^ endingStart: ZeroCurvatureEnding,$/;" p
AnimationAction.interpolantSettings.endingStart js/three/animation/AnimationAction.js /^ var interpolantSettings = {$/;" p
AnimationClip js/three/animation/AnimationClip.js /^function AnimationClip( name, duration, tracks ) {$/;" c
AnimationLoader js/three/loaders/AnimationLoader.js /^function AnimationLoader( manager ) {$/;" c
AnimationMixer js/three/animation/AnimationMixer.js /^function AnimationMixer( root ) {$/;" c
AnimationObjectGroup js/three/animation/AnimationObjectGroup.js /^function AnimationObjectGroup( var_args ) {$/;" c
AnimationObjectGroup.stats.objects js/three/animation/AnimationObjectGroup.js /^ this.stats = {$/;" p
AnimationUtils.arraySlice js/three/animation/AnimationUtils.js /^var AnimationUtils = {$/;" m
AnimationUtils.convertArray js/three/animation/AnimationUtils.js /^ },$/;" m
AnimationUtils.flattenJSON js/three/animation/AnimationUtils.js /^ },$/;" m
AnimationUtils.getKeyframeOrder js/three/animation/AnimationUtils.js /^ },$/;" m
AnimationUtils.getKeyframeOrder.compareTime js/three/animation/AnimationUtils.js /^ function compareTime( i, j ) {$/;" f
AnimationUtils.isTypedArray js/three/animation/AnimationUtils.js /^ },$/;" m
AnimationUtils.sortedArray js/three/animation/AnimationUtils.js /^ },$/;" m
ArcCurve js/three/extras/curves/ArcCurve.js /^function ArcCurve( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) {$/;" f
ArcCurve js/three/extras/curves/ArcCurve.js /^}$/;" c
ArcCurve.constructor js/three/extras/curves/ArcCurve.js /^ArcCurve.prototype.constructor = ArcCurve;$/;" m
Array js/three/extras/ShapeUtils.js /^ for ( var h = 0, hl = holes.length; h < hl; h ++ ) {$/;" c
Array vendor/three.js/Three.js /^ if ( array === undefined ) array = [];$/;" c
Array.push js/three/extras/ShapeUtils.js /^ Array.prototype.push.apply( allpoints, holes[ h ] );$/;" m
Array.push vendor/three.js/Three.js /^ Array.prototype.push.apply( allpoints, holes[h] );$/;" m
Array.push vendor/three.js/Three.js /^ Array.prototype.push.apply( array, this.children );$/;" m
Array.push vendor/three.js/Three.js /^ Array.prototype.push.apply( shapes, paths[ p ].toShapes() );$/;" m
ArrayCamera js/three/cameras/ArrayCamera.js /^function ArrayCamera( array ) {$/;" c
ArrowHelper js/three/helpers/ArrowHelper.js /^function ArrowHelper( dir, origin, length, color, headLength, headWidth ) {$/;" c
ArrowHelper.constructor js/three/helpers/ArrowHelper.js /^ArrowHelper.prototype.constructor = ArrowHelper;$/;" m
ArrowHelper.setColor js/three/helpers/ArrowHelper.js /^ArrowHelper.prototype.setColor = function ( color ) {$/;" m
ArrowHelper.setDirection js/three/helpers/ArrowHelper.js /^ArrowHelper.prototype.setDirection = ( function () {$/;" m
ArrowHelper.setLength js/three/helpers/ArrowHelper.js /^ArrowHelper.prototype.setLength = function ( length, headLength, headWidth ) {$/;" m
Attachment js/loaders/ColladaLoader.js /^ function Attachment( ) {$/;" c
Attachment.parse js/loaders/ColladaLoader.js /^ Attachment.prototype.parse = function( element ) {$/;" m
Audio js/three/Three.Legacy.js /^} );$/;" c
Audio js/three/audio/Audio.js /^function Audio( listener ) {$/;" c
Audio.load js/three/Three.Legacy.js /^Audio.prototype.load = function ( file ) {$/;" m
AudioAnalyser js/three/Three.Legacy.js /^};$/;" c
AudioAnalyser js/three/audio/AudioAnalyser.js /^function AudioAnalyser( audio, fftSize ) {$/;" c
AudioAnalyser.getData js/three/Three.Legacy.js /^AudioAnalyser.prototype.getData = function () {$/;" m
AudioContext.getContext js/three/audio/AudioContext.js /^var AudioContext = {$/;" m
AudioContext.setContext js/three/audio/AudioContext.js /^ },$/;" m
AudioListener js/three/audio/AudioListener.js /^function AudioListener() {$/;" c
AudioLoader js/three/loaders/AudioLoader.js /^function AudioLoader( manager ) {$/;" c
AxisHelper js/three/helpers/AxisHelper.js /^function AxisHelper( size ) {$/;" f
AxisHelper js/three/helpers/AxisHelper.js /^}$/;" c
AxisHelper.constructor js/three/helpers/AxisHelper.js /^AxisHelper.prototype.constructor = AxisHelper;$/;" m
Bone js/three/objects/Bone.js /^function Bone() {$/;" c
BooleanKeyframeTrack js/three/animation/tracks/BooleanKeyframeTrack.js /^function BooleanKeyframeTrack( name, times, values ) {$/;" f
BooleanKeyframeTrack js/three/animation/tracks/BooleanKeyframeTrack.js /^}$/;" c
Box2 js/three/math/Box2.js /^function Box2( min, max ) {$/;" c
Box3 js/three/math/Box3.js /^function Box3( min, max ) {$/;" c
BoxBufferGeometry js/three/geometries/BoxGeometry.js /^function BoxBufferGeometry( width, height, depth, widthSegments, heightSegments, depthSegments ) {$/;" c
BoxBufferGeometry.buildPlane js/three/geometries/BoxGeometry.js /^ function buildPlane( u, v, w, udir, vdir, width, height, depth, gridX, gridY, materialIndex ) {$/;" f
BoxBufferGeometry.constructor js/three/geometries/BoxGeometry.js /^BoxBufferGeometry.prototype.constructor = BoxBufferGeometry;$/;" m
BoxBufferGeometry.parameters.depth js/three/geometries/BoxGeometry.js /^ height: height,$/;" p
BoxBufferGeometry.parameters.depthSegments js/three/geometries/BoxGeometry.js /^ heightSegments: heightSegments,$/;" p
BoxBufferGeometry.parameters.height js/three/geometries/BoxGeometry.js /^ width: width,$/;" p
BoxBufferGeometry.parameters.heightSegments js/three/geometries/BoxGeometry.js /^ widthSegments: widthSegments,$/;" p
BoxBufferGeometry.parameters.width js/three/geometries/BoxGeometry.js /^ this.parameters = {$/;" p
BoxBufferGeometry.parameters.widthSegments js/three/geometries/BoxGeometry.js /^ depth: depth,$/;" p
BoxGeometry js/three/geometries/BoxGeometry.js /^function BoxGeometry( width, height, depth, widthSegments, heightSegments, depthSegments ) {$/;" c
BoxGeometry.constructor js/three/geometries/BoxGeometry.js /^BoxGeometry.prototype.constructor = BoxGeometry;$/;" m
BoxGeometry.parameters.depth js/three/geometries/BoxGeometry.js /^ height: height,$/;" p
BoxGeometry.parameters.depthSegments js/three/geometries/BoxGeometry.js /^ heightSegments: heightSegments,$/;" p
BoxGeometry.parameters.height js/three/geometries/BoxGeometry.js /^ width: width,$/;" p
BoxGeometry.parameters.heightSegments js/three/geometries/BoxGeometry.js /^ widthSegments: widthSegments,$/;" p
BoxGeometry.parameters.width js/three/geometries/BoxGeometry.js /^ this.parameters = {$/;" p
BoxGeometry.parameters.widthSegments js/three/geometries/BoxGeometry.js /^ depth: depth,$/;" p
BoxHelper js/three/helpers/BoxHelper.js /^function BoxHelper( object, color ) {$/;" c
BoxHelper.constructor js/three/helpers/BoxHelper.js /^BoxHelper.prototype.constructor = BoxHelper;$/;" m
BoxHelper.setFromObject js/three/helpers/BoxHelper.js /^BoxHelper.prototype.setFromObject = function ( object ) {$/;" m
BoxHelper.update js/three/helpers/BoxHelper.js /^BoxHelper.prototype.update = ( function () {$/;" m
BufferAttribute js/three/core/BufferAttribute.js /^function BufferAttribute( array, itemSize, normalized ) {$/;" c
BufferAttribute.onUploadCallback js/three/core/BufferAttribute.js /^ this.onUploadCallback = function () {};$/;" m
BufferAttribute.updateRange.count js/three/core/BufferAttribute.js /^ this.updateRange = { offset: 0, count: - 1 };$/;" p
BufferAttribute.updateRange.offset js/three/core/BufferAttribute.js /^ this.updateRange = { offset: 0, count: - 1 };$/;" p
BufferGeometry js/three/core/BufferGeometry.js /^function BufferGeometry() {$/;" c
BufferGeometry.drawRange.count js/three/core/BufferGeometry.js /^ this.drawRange = { start: 0, count: Infinity };$/;" p
BufferGeometry.drawRange.start js/three/core/BufferGeometry.js /^ this.drawRange = { start: 0, count: Infinity };$/;" p
BufferGeometryLoader js/three/loaders/BufferGeometryLoader.js /^function BufferGeometryLoader( manager ) {$/;" c
Cache.enabled js/three/loaders/Cache.js /^var Cache = {$/;" p
Cache.files js/three/loaders/Cache.js /^ enabled: false,$/;" p
Camera js/loaders/ColladaLoader.js /^ function Camera() {$/;" c
Camera js/three/cameras/Camera.js /^function Camera() {$/;" c
Camera.parse js/loaders/ColladaLoader.js /^ Camera.prototype.parse = function ( element ) {$/;" m
Camera.parseOptics js/loaders/ColladaLoader.js /^ Camera.prototype.parseOptics = function ( element ) {$/;" m
CameraHelper js/three/helpers/CameraHelper.js /^function CameraHelper( camera ) {$/;" c
CameraHelper.addLine js/three/helpers/CameraHelper.js /^ function addLine( a, b, color ) {$/;" f
CameraHelper.addPoint js/three/helpers/CameraHelper.js /^ function addPoint( id, color ) {$/;" f
CameraHelper.constructor js/three/helpers/CameraHelper.js /^CameraHelper.prototype.constructor = CameraHelper;$/;" m
CameraHelper.function.setPoint js/three/helpers/CameraHelper.js /^ function setPoint( point, x, y, z ) {$/;" f
CameraHelper.update js/three/helpers/CameraHelper.js /^CameraHelper.prototype.update = function () {$/;" m
CanvasTexture js/three/textures/CanvasTexture.js /^function CanvasTexture( canvas, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {$/;" c
CanvasTexture.constructor js/three/textures/CanvasTexture.js /^CanvasTexture.prototype.constructor = CanvasTexture;$/;" m
CatmullRom js/three/extras/core/Interpolations.js /^function CatmullRom( t, p0, p1, p2, p3 ) {$/;" f
CatmullRomCurve3 js/three/extras/curves/CatmullRomCurve3.js /^function CatmullRomCurve3( p \/* array of Vector3 *\/ ) {$/;" c
CatmullRomCurve3.constructor js/three/extras/curves/CatmullRomCurve3.js /^CatmullRomCurve3.prototype.constructor = CatmullRomCurve3;$/;" m
CatmullRomCurve3.getPoint js/three/extras/curves/CatmullRomCurve3.js /^CatmullRomCurve3.prototype.getPoint = function ( t ) {$/;" m
Channel js/loaders/ColladaLoader.js /^ function Channel( animation ) {$/;" c
Channel.parse js/loaders/ColladaLoader.js /^ Channel.prototype.parse = function ( element ) {$/;" m
CircleBufferGeometry js/three/geometries/CircleGeometry.js /^function CircleBufferGeometry( radius, segments, thetaStart, thetaLength ) {$/;" c
CircleBufferGeometry.constructor js/three/geometries/CircleGeometry.js /^CircleBufferGeometry.prototype.constructor = CircleBufferGeometry;$/;" m
CircleBufferGeometry.parameters.radius js/three/geometries/CircleGeometry.js /^ this.parameters = {$/;" p
CircleBufferGeometry.parameters.segments js/three/geometries/CircleGeometry.js /^ radius: radius,$/;" p
CircleBufferGeometry.parameters.thetaLength js/three/geometries/CircleGeometry.js /^ thetaStart: thetaStart,$/;" p
CircleBufferGeometry.parameters.thetaStart js/three/geometries/CircleGeometry.js /^ segments: segments,$/;" p
CircleGeometry js/three/geometries/CircleGeometry.js /^function CircleGeometry( radius, segments, thetaStart, thetaLength ) {$/;" c
CircleGeometry.constructor js/three/geometries/CircleGeometry.js /^CircleGeometry.prototype.constructor = CircleGeometry;$/;" m
CircleGeometry.parameters.radius js/three/geometries/CircleGeometry.js /^ this.parameters = {$/;" p
CircleGeometry.parameters.segments js/three/geometries/CircleGeometry.js /^ radius: radius,$/;" p
CircleGeometry.parameters.thetaLength js/three/geometries/CircleGeometry.js /^ thetaStart: thetaStart,$/;" p
CircleGeometry.parameters.thetaStart js/three/geometries/CircleGeometry.js /^ segments: segments,$/;" p
Clock js/three/core/Clock.js /^function Clock( autoStart ) {$/;" c
ClosedSplineCurve3 js/three/Three.Legacy.js /^}$/;" c
Color js/three/math/Color.js /^function Color( r, g, b ) {$/;" f
ColorKeyframeTrack js/three/animation/tracks/ColorKeyframeTrack.js /^function ColorKeyframeTrack( name, times, values, interpolation ) {$/;" f
ColorKeyframeTrack js/three/animation/tracks/ColorKeyframeTrack.js /^}$/;" c
ColorKeywords.aliceblue js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.antiquewhite js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.aqua js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.aquamarine js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.azure js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.beige js/three/math/Color.js /^var ColorKeywords = { 'aliceblue': 0xF0F8FF, 'antiquewhite': 0xFAEBD7, 'aqua': 0x00FFFF, 'aquamarine': 0x7FFFD4, 'azure': 0xF0FFFF,$/;" p
ColorKeywords.bisque js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.black js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.blanchedalmond js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.blue js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.blueviolet js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.brown js/three/math/Color.js /^ 'beige': 0xF5F5DC, 'bisque': 0xFFE4C4, 'black': 0x000000, 'blanchedalmond': 0xFFEBCD, 'blue': 0x0000FF, 'blueviolet': 0x8A2BE2,$/;" p
ColorKeywords.burlywood js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.cadetblue js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.chartreuse js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.chocolate js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.coral js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.cornflowerblue js/three/math/Color.js /^ 'brown': 0xA52A2A, 'burlywood': 0xDEB887, 'cadetblue': 0x5F9EA0, 'chartreuse': 0x7FFF00, 'chocolate': 0xD2691E, 'coral': 0xFF7F50,$/;" p
ColorKeywords.cornsilk js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.crimson js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.cyan js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.darkblue js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.darkcyan js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.darkgoldenrod js/three/math/Color.js /^ 'cornflowerblue': 0x6495ED, 'cornsilk': 0xFFF8DC, 'crimson': 0xDC143C, 'cyan': 0x00FFFF, 'darkblue': 0x00008B, 'darkcyan': 0x008B8B,$/;" p
ColorKeywords.darkgray js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkgreen js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkgrey js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkkhaki js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkmagenta js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkolivegreen js/three/math/Color.js /^ 'darkgoldenrod': 0xB8860B, 'darkgray': 0xA9A9A9, 'darkgreen': 0x006400, 'darkgrey': 0xA9A9A9, 'darkkhaki': 0xBDB76B, 'darkmagenta': 0x8B008B,$/;" p
ColorKeywords.darkorange js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darkorchid js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darkred js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darksalmon js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darkseagreen js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darkslateblue js/three/math/Color.js /^ 'darkolivegreen': 0x556B2F, 'darkorange': 0xFF8C00, 'darkorchid': 0x9932CC, 'darkred': 0x8B0000, 'darksalmon': 0xE9967A, 'darkseagreen': 0x8FBC8F,$/;" p
ColorKeywords.darkslategray js/three/math/Color.js /^ 'darkslateblue': 0x483D8B, 'darkslategray': 0x2F4F4F, 'darkslategrey': 0x2F4F4F, 'darkturquoise': 0x00CED1, 'darkviolet': 0x9400D3,$/;" p
ColorKeywords.darkslategrey js/three/math/Color.js /^ 'darkslateblue': 0x483D8B, 'darkslategray': 0x2F4F4F, 'darkslategrey': 0x2F4F4F, 'darkturquoise': 0x00CED1, 'darkviolet': 0x9400D3,$/;" p
ColorKeywords.darkturquoise js/three/math/Color.js /^ 'darkslateblue': 0x483D8B, 'darkslategray': 0x2F4F4F, 'darkslategrey': 0x2F4F4F, 'darkturquoise': 0x00CED1, 'darkviolet': 0x9400D3,$/;" p
ColorKeywords.darkviolet js/three/math/Color.js /^ 'darkslateblue': 0x483D8B, 'darkslategray': 0x2F4F4F, 'darkslategrey': 0x2F4F4F, 'darkturquoise': 0x00CED1, 'darkviolet': 0x9400D3,$/;" p
ColorKeywords.deeppink js/three/math/Color.js /^ 'darkslateblue': 0x483D8B, 'darkslategray': 0x2F4F4F, 'darkslategrey': 0x2F4F4F, 'darkturquoise': 0x00CED1, 'darkviolet': 0x9400D3,$/;" p
ColorKeywords.deepskyblue js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.dimgray js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.dimgrey js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.dodgerblue js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.firebrick js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.floralwhite js/three/math/Color.js /^ 'deeppink': 0xFF1493, 'deepskyblue': 0x00BFFF, 'dimgray': 0x696969, 'dimgrey': 0x696969, 'dodgerblue': 0x1E90FF, 'firebrick': 0xB22222,$/;" p
ColorKeywords.forestgreen js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.fuchsia js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.gainsboro js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.ghostwhite js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.gold js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.goldenrod js/three/math/Color.js /^ 'floralwhite': 0xFFFAF0, 'forestgreen': 0x228B22, 'fuchsia': 0xFF00FF, 'gainsboro': 0xDCDCDC, 'ghostwhite': 0xF8F8FF, 'gold': 0xFFD700,$/;" p
ColorKeywords.gray js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.green js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.greenyellow js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.grey js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.honeydew js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.hotpink js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.indianred js/three/math/Color.js /^ 'goldenrod': 0xDAA520, 'gray': 0x808080, 'green': 0x008000, 'greenyellow': 0xADFF2F, 'grey': 0x808080, 'honeydew': 0xF0FFF0, 'hotpink': 0xFF69B4,$/;" p
ColorKeywords.indigo js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.ivory js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.khaki js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.lavender js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.lavenderblush js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.lawngreen js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.lemonchiffon js/three/math/Color.js /^ 'indianred': 0xCD5C5C, 'indigo': 0x4B0082, 'ivory': 0xFFFFF0, 'khaki': 0xF0E68C, 'lavender': 0xE6E6FA, 'lavenderblush': 0xFFF0F5, 'lawngreen': 0x7CFC00,$/;" p
ColorKeywords.lightblue js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightcoral js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightcyan js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightgoldenrodyellow js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightgray js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightgreen js/three/math/Color.js /^ 'lemonchiffon': 0xFFFACD, 'lightblue': 0xADD8E6, 'lightcoral': 0xF08080, 'lightcyan': 0xE0FFFF, 'lightgoldenrodyellow': 0xFAFAD2, 'lightgray': 0xD3D3D3,$/;" p
ColorKeywords.lightgrey js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightpink js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightsalmon js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightseagreen js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightskyblue js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightslategray js/three/math/Color.js /^ 'lightgreen': 0x90EE90, 'lightgrey': 0xD3D3D3, 'lightpink': 0xFFB6C1, 'lightsalmon': 0xFFA07A, 'lightseagreen': 0x20B2AA, 'lightskyblue': 0x87CEFA,$/;" p
ColorKeywords.lightslategrey js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.lightsteelblue js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.lightyellow js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.lime js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.limegreen js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.linen js/three/math/Color.js /^ 'lightslategray': 0x778899, 'lightslategrey': 0x778899, 'lightsteelblue': 0xB0C4DE, 'lightyellow': 0xFFFFE0, 'lime': 0x00FF00, 'limegreen': 0x32CD32,$/;" p
ColorKeywords.magenta js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.maroon js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.mediumaquamarine js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.mediumblue js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.mediumorchid js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.mediumpurple js/three/math/Color.js /^ 'linen': 0xFAF0E6, 'magenta': 0xFF00FF, 'maroon': 0x800000, 'mediumaquamarine': 0x66CDAA, 'mediumblue': 0x0000CD, 'mediumorchid': 0xBA55D3,$/;" p
ColorKeywords.mediumseagreen js/three/math/Color.js /^ 'mediumpurple': 0x9370DB, 'mediumseagreen': 0x3CB371, 'mediumslateblue': 0x7B68EE, 'mediumspringgreen': 0x00FA9A, 'mediumturquoise': 0x48D1CC,$/;" p
ColorKeywords.mediumslateblue js/three/math/Color.js /^ 'mediumpurple': 0x9370DB, 'mediumseagreen': 0x3CB371, 'mediumslateblue': 0x7B68EE, 'mediumspringgreen': 0x00FA9A, 'mediumturquoise': 0x48D1CC,$/;" p
ColorKeywords.mediumspringgreen js/three/math/Color.js /^ 'mediumpurple': 0x9370DB, 'mediumseagreen': 0x3CB371, 'mediumslateblue': 0x7B68EE, 'mediumspringgreen': 0x00FA9A, 'mediumturquoise': 0x48D1CC,$/;" p
ColorKeywords.mediumturquoise js/three/math/Color.js /^ 'mediumpurple': 0x9370DB, 'mediumseagreen': 0x3CB371, 'mediumslateblue': 0x7B68EE, 'mediumspringgreen': 0x00FA9A, 'mediumturquoise': 0x48D1CC,$/;" p
ColorKeywords.mediumvioletred js/three/math/Color.js /^ 'mediumpurple': 0x9370DB, 'mediumseagreen': 0x3CB371, 'mediumslateblue': 0x7B68EE, 'mediumspringgreen': 0x00FA9A, 'mediumturquoise': 0x48D1CC,$/;" p
ColorKeywords.midnightblue js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.mintcream js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.mistyrose js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.moccasin js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.navajowhite js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.navy js/three/math/Color.js /^ 'mediumvioletred': 0xC71585, 'midnightblue': 0x191970, 'mintcream': 0xF5FFFA, 'mistyrose': 0xFFE4E1, 'moccasin': 0xFFE4B5, 'navajowhite': 0xFFDEAD,$/;" p
ColorKeywords.oldlace js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.olive js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.olivedrab js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.orange js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.orangered js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.orchid js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.palegoldenrod js/three/math/Color.js /^ 'navy': 0x000080, 'oldlace': 0xFDF5E6, 'olive': 0x808000, 'olivedrab': 0x6B8E23, 'orange': 0xFFA500, 'orangered': 0xFF4500, 'orchid': 0xDA70D6,$/;" p
ColorKeywords.palegreen js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.paleturquoise js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.palevioletred js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.papayawhip js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.peachpuff js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.peru js/three/math/Color.js /^ 'palegoldenrod': 0xEEE8AA, 'palegreen': 0x98FB98, 'paleturquoise': 0xAFEEEE, 'palevioletred': 0xDB7093, 'papayawhip': 0xFFEFD5, 'peachpuff': 0xFFDAB9,$/;" p
ColorKeywords.pink js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.plum js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.powderblue js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.purple js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.red js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.rosybrown js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.royalblue js/three/math/Color.js /^ 'peru': 0xCD853F, 'pink': 0xFFC0CB, 'plum': 0xDDA0DD, 'powderblue': 0xB0E0E6, 'purple': 0x800080, 'red': 0xFF0000, 'rosybrown': 0xBC8F8F,$/;" p
ColorKeywords.saddlebrown js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.salmon js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.sandybrown js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.seagreen js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.seashell js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.sienna js/three/math/Color.js /^ 'royalblue': 0x4169E1, 'saddlebrown': 0x8B4513, 'salmon': 0xFA8072, 'sandybrown': 0xF4A460, 'seagreen': 0x2E8B57, 'seashell': 0xFFF5EE,$/;" p
ColorKeywords.silver js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.skyblue js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.slateblue js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.slategray js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.slategrey js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.snow js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.springgreen js/three/math/Color.js /^ 'sienna': 0xA0522D, 'silver': 0xC0C0C0, 'skyblue': 0x87CEEB, 'slateblue': 0x6A5ACD, 'slategray': 0x708090, 'slategrey': 0x708090, 'snow': 0xFFFAFA,$/;" p
ColorKeywords.steelblue js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.tan js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.teal js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.thistle js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.tomato js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.turquoise js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.violet js/three/math/Color.js /^ 'springgreen': 0x00FF7F, 'steelblue': 0x4682B4, 'tan': 0xD2B48C, 'teal': 0x008080, 'thistle': 0xD8BFD8, 'tomato': 0xFF6347, 'turquoise': 0x40E0D0,$/;" p
ColorKeywords.wheat js/three/math/Color.js /^ 'violet': 0xEE82EE, 'wheat': 0xF5DEB3, 'white': 0xFFFFFF, 'whitesmoke': 0xF5F5F5, 'yellow': 0xFFFF00, 'yellowgreen': 0x9ACD32 };$/;" p
ColorKeywords.white js/three/math/Color.js /^ 'violet': 0xEE82EE, 'wheat': 0xF5DEB3, 'white': 0xFFFFFF, 'whitesmoke': 0xF5F5F5, 'yellow': 0xFFFF00, 'yellowgreen': 0x9ACD32 };$/;" p
ColorKeywords.whitesmoke js/three/math/Color.js /^ 'violet': 0xEE82EE, 'wheat': 0xF5DEB3, 'white': 0xFFFFFF, 'whitesmoke': 0xF5F5F5, 'yellow': 0xFFFF00, 'yellowgreen': 0x9ACD32 };$/;" p
ColorKeywords.yellow js/three/math/Color.js /^ 'violet': 0xEE82EE, 'wheat': 0xF5DEB3, 'white': 0xFFFFFF, 'whitesmoke': 0xF5F5F5, 'yellow': 0xFFFF00, 'yellowgreen': 0x9ACD32 };$/;" p
ColorKeywords.yellowgreen js/three/math/Color.js /^ 'violet': 0xEE82EE, 'wheat': 0xF5DEB3, 'white': 0xFFFFFF, 'whitesmoke': 0xF5F5F5, 'yellow': 0xFFFF00, 'yellowgreen': 0x9ACD32 };$/;" p
ColorOrTexture js/loaders/ColladaLoader.js /^ function ColorOrTexture () {$/;" c
ColorOrTexture.isColor js/loaders/ColladaLoader.js /^ ColorOrTexture.prototype.isColor = function () {$/;" m
ColorOrTexture.isTexture js/loaders/ColladaLoader.js /^ ColorOrTexture.prototype.isTexture = function () {$/;" m
ColorOrTexture.parse js/loaders/ColladaLoader.js /^ ColorOrTexture.prototype.parse = function ( element ) {$/;" m
ColorOrTexture.parseTexture js/loaders/ColladaLoader.js /^ ColorOrTexture.prototype.parseTexture = function ( element ) {$/;" m
Composite js/three/animation/PropertyBinding.js /^function Composite( targetGroup, path, optionalParsedPath ) {$/;" c
CompressedTexture js/three/textures/CompressedTexture.js /^function CompressedTexture( mipmaps, width, height, format, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy, encoding ) {$/;" c
CompressedTexture.constructor js/three/textures/CompressedTexture.js /^CompressedTexture.prototype.constructor = CompressedTexture;$/;" m
CompressedTexture.image.height js/three/textures/CompressedTexture.js /^ this.image = { width: width, height: height };$/;" p
CompressedTexture.image.width js/three/textures/CompressedTexture.js /^ this.image = { width: width, height: height };$/;" p
CompressedTexture.isCompressedTexture js/three/textures/CompressedTexture.js /^CompressedTexture.prototype.isCompressedTexture = true;$/;" m
CompressedTextureLoader js/three/loaders/CompressedTextureLoader.js /^function CompressedTextureLoader( manager ) {$/;" c
ConeBufferGeometry js/three/geometries/ConeGeometry.js /^function ConeBufferGeometry( radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength ) {$/;" c
ConeBufferGeometry.constructor js/three/geometries/ConeGeometry.js /^ConeBufferGeometry.prototype.constructor = ConeBufferGeometry;$/;" m
ConeBufferGeometry.parameters.height js/three/geometries/ConeGeometry.js /^ radius: radius,$/;" p
ConeBufferGeometry.parameters.heightSegments js/three/geometries/ConeGeometry.js /^ radialSegments: radialSegments,$/;" p
ConeBufferGeometry.parameters.openEnded js/three/geometries/ConeGeometry.js /^ heightSegments: heightSegments,$/;" p
ConeBufferGeometry.parameters.radialSegments js/three/geometries/ConeGeometry.js /^ height: height,$/;" p
ConeBufferGeometry.parameters.radius js/three/geometries/ConeGeometry.js /^ this.parameters = {$/;" p
ConeBufferGeometry.parameters.thetaLength js/three/geometries/ConeGeometry.js /^ thetaStart: thetaStart,$/;" p
ConeBufferGeometry.parameters.thetaStart js/three/geometries/ConeGeometry.js /^ openEnded: openEnded,$/;" p
ConeGeometry js/three/geometries/ConeGeometry.js /^function ConeGeometry( radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength ) {$/;" c
ConeGeometry.constructor js/three/geometries/ConeGeometry.js /^ConeGeometry.prototype.constructor = ConeGeometry;$/;" m
ConeGeometry.parameters.height js/three/geometries/ConeGeometry.js /^ radius: radius,$/;" p
ConeGeometry.parameters.heightSegments js/three/geometries/ConeGeometry.js /^ radialSegments: radialSegments,$/;" p
ConeGeometry.parameters.openEnded js/three/geometries/ConeGeometry.js /^ heightSegments: heightSegments,$/;" p
ConeGeometry.parameters.radialSegments js/three/geometries/ConeGeometry.js /^ height: height,$/;" p
ConeGeometry.parameters.radius js/three/geometries/ConeGeometry.js /^ this.parameters = {$/;" p
ConeGeometry.parameters.thetaLength js/three/geometries/ConeGeometry.js /^ thetaStart: thetaStart,$/;" p
ConeGeometry.parameters.thetaStart js/three/geometries/ConeGeometry.js /^ openEnded: openEnded,$/;" p
Controller js/loaders/ColladaLoader.js /^ function Controller() {$/;" c
Controller.parse js/loaders/ColladaLoader.js /^ Controller.prototype.parse = function( element ) {$/;" m
CubeCamera js/three/cameras/CubeCamera.js /^function CubeCamera( near, far, cubeResolution ) {$/;" c
CubeCamera.constructor js/three/cameras/CubeCamera.js /^CubeCamera.prototype.constructor = CubeCamera;$/;" m
CubeCamera.updateCubeMap js/three/cameras/CubeCamera.js /^ this.updateCubeMap = function ( renderer, scene ) {$/;" m
CubeTexture js/three/textures/CubeTexture.js /^function CubeTexture( images, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy, encoding ) {$/;" c
CubeTexture.constructor js/three/textures/CubeTexture.js /^CubeTexture.prototype.constructor = CubeTexture;$/;" m
CubeTexture.isCubeTexture js/three/textures/CubeTexture.js /^CubeTexture.prototype.isCubeTexture = true;$/;" m
CubeTextureLoader js/three/loaders/CubeTextureLoader.js /^function CubeTextureLoader( manager ) {$/;" c
CubicBezier js/three/extras/core/Interpolations.js /^function CubicBezier( t, p0, p1, p2, p3 ) {$/;" f
CubicBezierCurve js/three/extras/curves/CubicBezierCurve.js /^function CubicBezierCurve( v0, v1, v2, v3 ) {$/;" c
CubicBezierCurve.constructor js/three/extras/curves/CubicBezierCurve.js /^CubicBezierCurve.prototype.constructor = CubicBezierCurve;$/;" m
CubicBezierCurve.getPoint js/three/extras/curves/CubicBezierCurve.js /^CubicBezierCurve.prototype.getPoint = function ( t ) {$/;" m
CubicBezierCurve3 js/three/extras/curves/CubicBezierCurve3.js /^function CubicBezierCurve3( v0, v1, v2, v3 ) {$/;" c
CubicBezierCurve3.constructor js/three/extras/curves/CubicBezierCurve3.js /^CubicBezierCurve3.prototype.constructor = CubicBezierCurve3;$/;" m
CubicBezierCurve3.getPoint js/three/extras/curves/CubicBezierCurve3.js /^CubicBezierCurve3.prototype.getPoint = function ( t ) {$/;" m
CubicBezierP0 js/three/extras/core/Interpolations.js /^function CubicBezierP0( t, p ) {$/;" f
CubicBezierP1 js/three/extras/core/Interpolations.js /^function CubicBezierP1( t, p ) {$/;" f
CubicBezierP2 js/three/extras/core/Interpolations.js /^function CubicBezierP2( t, p ) {$/;" f
CubicBezierP3 js/three/extras/core/Interpolations.js /^function CubicBezierP3( t, p ) {$/;" f
CubicInterpolant js/three/math/interpolants/CubicInterpolant.js /^function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {$/;" c
CubicPoly js/three/extras/curves/CatmullRomCurve3.js /^function CubicPoly() {$/;" f
CubicPoly.init js/three/extras/curves/CatmullRomCurve3.js /^ function init( x0, x1, t0, t1 ) {$/;" f
Curve js/three/extras/core/Curve.js /^function Curve() {$/;" c
Curve.create js/three/Three.Legacy.js /^}$/;" f
CurvePath js/three/extras/core/CurvePath.js /^function CurvePath() {$/;" c
CylinderBufferGeometry js/three/geometries/CylinderGeometry.js /^function CylinderBufferGeometry( radiusTop, radiusBottom, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength ) {$/;" c
CylinderBufferGeometry.constructor js/three/geometries/CylinderGeometry.js /^CylinderBufferGeometry.prototype.constructor = CylinderBufferGeometry;$/;" m
CylinderBufferGeometry.generateCap js/three/geometries/CylinderGeometry.js /^ function generateCap( top ) {$/;" f
CylinderBufferGeometry.generateTorso js/three/geometries/CylinderGeometry.js /^ function generateTorso() {$/;" f
CylinderBufferGeometry.parameters.height js/three/geometries/CylinderGeometry.js /^ radiusBottom: radiusBottom,$/;" p
CylinderBufferGeometry.parameters.heightSegments js/three/geometries/CylinderGeometry.js /^ radialSegments: radialSegments,$/;" p
CylinderBufferGeometry.parameters.openEnded js/three/geometries/CylinderGeometry.js /^ heightSegments: heightSegments,$/;" p
CylinderBufferGeometry.parameters.radialSegments js/three/geometries/CylinderGeometry.js /^ height: height,$/;" p
CylinderBufferGeometry.parameters.radiusBottom js/three/geometries/CylinderGeometry.js /^ radiusTop: radiusTop,$/;" p
CylinderBufferGeometry.parameters.radiusTop js/three/geometries/CylinderGeometry.js /^ this.parameters = {$/;" p
CylinderBufferGeometry.parameters.thetaLength js/three/geometries/CylinderGeometry.js /^ thetaStart: thetaStart,$/;" p
CylinderBufferGeometry.parameters.thetaStart js/three/geometries/CylinderGeometry.js /^ openEnded: openEnded,$/;" p
CylinderGeometry js/three/geometries/CylinderGeometry.js /^function CylinderGeometry( radiusTop, radiusBottom, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength ) {$/;" c
CylinderGeometry.constructor js/three/geometries/CylinderGeometry.js /^CylinderGeometry.prototype.constructor = CylinderGeometry;$/;" m
CylinderGeometry.parameters.height js/three/geometries/CylinderGeometry.js /^ radiusBottom: radiusBottom,$/;" p
CylinderGeometry.parameters.heightSegments js/three/geometries/CylinderGeometry.js /^ radialSegments: radialSegments,$/;" p
CylinderGeometry.parameters.openEnded js/three/geometries/CylinderGeometry.js /^ heightSegments: heightSegments,$/;" p
CylinderGeometry.parameters.radialSegments js/three/geometries/CylinderGeometry.js /^ height: height,$/;" p
CylinderGeometry.parameters.radiusBottom js/three/geometries/CylinderGeometry.js /^ radiusTop: radiusTop,$/;" p
CylinderGeometry.parameters.radiusTop js/three/geometries/CylinderGeometry.js /^ this.parameters = {$/;" p
CylinderGeometry.parameters.thetaLength js/three/geometries/CylinderGeometry.js /^ thetaStart: thetaStart,$/;" p
CylinderGeometry.parameters.thetaStart js/three/geometries/CylinderGeometry.js /^ openEnded: openEnded,$/;" p
Cylindrical js/three/math/Cylindrical.js /^function Cylindrical( radius, theta, y ) {$/;" c
DDPF_ALPHAPIXELS vendor/three.js/Three.js /^ var DDPF_ALPHAPIXELS = 0x1,$/;" v
DDSCAPS2_CUBEMAP vendor/three.js/Three.js /^ var DDSCAPS2_CUBEMAP = 0x200,$/;" v
DDSCAPS_COMPLEX vendor/three.js/Three.js /^ var DDSCAPS_COMPLEX = 0x8,$/;" v
DDSD_CAPS vendor/three.js/Three.js /^ var DDSD_CAPS = 0x1,$/;" v
DDS_MAGIC vendor/three.js/Three.js /^ var DDS_MAGIC = 0x20534444;$/;" v
DataTexture js/three/textures/DataTexture.js /^function DataTexture( data, width, height, format, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy, encoding ) {$/;" c
DataTexture.constructor js/three/textures/DataTexture.js /^DataTexture.prototype.constructor = DataTexture;$/;" m
DataTexture.image.data js/three/textures/DataTexture.js /^ this.image = { data: data, width: width, height: height };$/;" p
DataTexture.image.height js/three/textures/DataTexture.js /^ this.image = { data: data, width: width, height: height };$/;" p
DataTexture.image.width js/three/textures/DataTexture.js /^ this.image = { data: data, width: width, height: height };$/;" p
DataTexture.isDataTexture js/three/textures/DataTexture.js /^DataTexture.prototype.isDataTexture = true;$/;" m
DataTextureLoader js/three/loaders/DataTextureLoader.js /^function DataTextureLoader( manager ) {$/;" c
DdE1xQ vendor/three.js/Three.js /^ var DdE1xQ = sign * this.direction.dot( edge1.cross( diff ) );$/;" v
DdQxE2 vendor/three.js/Three.js /^ var DdQxE2 = sign * this.direction.dot( edge2.crossVectors( diff, edge2 ) );$/;" v
DepthBuffer js/three/renderers/webgl/WebGLState.js /^ function DepthBuffer() {$/;" f
DepthTexture js/three/textures/DepthTexture.js /^function DepthTexture( width, height, type, mapping, wrapS, wrapT, magFilter, minFilter, anisotropy, format ) {$/;" c
DepthTexture.constructor js/three/textures/DepthTexture.js /^DepthTexture.prototype.constructor = DepthTexture;$/;" m
DepthTexture.image.height js/three/textures/DepthTexture.js /^ this.image = { width: width, height: height };$/;" p
DepthTexture.image.width js/three/textures/DepthTexture.js /^ this.image = { width: width, height: height };$/;" p
DepthTexture.isDepthTexture js/three/textures/DepthTexture.js /^DepthTexture.prototype.isDepthTexture = true;$/;" m
Detector.canvas vendor/three.js/Detector.js /^var Detector = {$/;" p
DirectGeometry js/three/core/DirectGeometry.js /^function DirectGeometry() {$/;" c
DirectionalLight js/three/lights/DirectionalLight.js /^function DirectionalLight( color, intensity ) {$/;" c
DirectionalLightHelper js/three/helpers/DirectionalLightHelper.js /^function DirectionalLightHelper( light, size ) {$/;" c
DirectionalLightHelper.constructor js/three/helpers/DirectionalLightHelper.js /^DirectionalLightHelper.prototype.constructor = DirectionalLightHelper;$/;" m
DirectionalLightHelper.dispose js/three/helpers/DirectionalLightHelper.js /^DirectionalLightHelper.prototype.dispose = function () {$/;" m
DirectionalLightHelper.update js/three/helpers/DirectionalLightHelper.js /^DirectionalLightHelper.prototype.update = function () {$/;" m
DirectionalLightShadow js/three/lights/DirectionalLightShadow.js /^function DirectionalLightShadow( ) {$/;" f
DirectionalLightShadow js/three/lights/DirectionalLightShadow.js /^}$/;" c
DiscreteInterpolant js/three/math/interpolants/DiscreteInterpolant.js /^function DiscreteInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {$/;" f
DiscreteInterpolant js/three/math/interpolants/DiscreteInterpolant.js /^}$/;" c
DodecahedronBufferGeometry js/three/geometries/DodecahedronGeometry.js /^function DodecahedronBufferGeometry( radius, detail ) {$/;" c
DodecahedronBufferGeometry.constructor js/three/geometries/DodecahedronGeometry.js /^DodecahedronBufferGeometry.prototype.constructor = DodecahedronBufferGeometry;$/;" m
DodecahedronBufferGeometry.parameters.detail js/three/geometries/DodecahedronGeometry.js /^ radius: radius,$/;" p
DodecahedronBufferGeometry.parameters.radius js/three/geometries/DodecahedronGeometry.js /^ this.parameters = {$/;" p
DodecahedronGeometry js/three/geometries/DodecahedronGeometry.js /^function DodecahedronGeometry( radius, detail ) {$/;" c
DodecahedronGeometry.constructor js/three/geometries/DodecahedronGeometry.js /^DodecahedronGeometry.prototype.constructor = DodecahedronGeometry;$/;" m
DodecahedronGeometry.parameters.detail js/three/geometries/DodecahedronGeometry.js /^ radius: radius,$/;" p
DodecahedronGeometry.parameters.radius js/three/geometries/DodecahedronGeometry.js /^ this.parameters = {$/;" p
EPS vendor/three.js/OrbitControls.js /^ var EPS = 0.000001;$/;" v
EPS vendor/three.js/Three.js /^ var EPS = 0.000001;$/;" v
EdgesGeometry js/three/geometries/EdgesGeometry.js /^function EdgesGeometry( geometry, thresholdAngle ) {$/;" c
EdgesGeometry.constructor js/three/geometries/EdgesGeometry.js /^EdgesGeometry.prototype.constructor = EdgesGeometry;$/;" m
EdgesGeometry.parameters.thresholdAngle js/three/geometries/EdgesGeometry.js /^ this.parameters = {$/;" p
Effect js/loaders/ColladaLoader.js /^ function Effect () {$/;" c
Effect.create js/loaders/ColladaLoader.js /^ Effect.prototype.create = function () {$/;" m
Effect.parse js/loaders/ColladaLoader.js /^ Effect.prototype.parse = function ( element ) {$/;" m
Effect.parseExtra js/loaders/ColladaLoader.js /^ Effect.prototype.parseExtra = function ( element ) {$/;" m
Effect.parseExtraTechnique js/loaders/ColladaLoader.js /^ Effect.prototype.parseExtraTechnique = function ( element ) {$/;" m
Effect.parseNewparam js/loaders/ColladaLoader.js /^ Effect.prototype.parseNewparam = function ( element ) {$/;" m
Effect.parseProfileCOMMON js/loaders/ColladaLoader.js /^ Effect.prototype.parseProfileCOMMON = function ( element ) {$/;" m
Effect.parseTechnique js/loaders/ColladaLoader.js /^ Effect.prototype.parseTechnique = function ( element ) {$/;" m
EllipseCurve js/three/extras/curves/EllipseCurve.js /^function EllipseCurve( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation ) {$/;" c
EllipseCurve.constructor js/three/extras/curves/EllipseCurve.js /^EllipseCurve.prototype.constructor = EllipseCurve;$/;" m
EllipseCurve.getPoint js/three/extras/curves/EllipseCurve.js /^EllipseCurve.prototype.getPoint = function ( t ) {$/;" m
EllipseCurve.isEllipseCurve js/three/extras/curves/EllipseCurve.js /^EllipseCurve.prototype.isEllipseCurve = true;$/;" m
Euler js/three/math/Euler.js /^function Euler( x, y, z, order ) {$/;" c
EventDispatcher js/three/core/EventDispatcher.js /^function EventDispatcher() {}$/;" f
ExtrudeBufferGeometry js/three/geometries/ExtrudeGeometry.js /^function ExtrudeBufferGeometry( shapes, options ) {$/;" c
ExtrudeBufferGeometry.addShape js/three/geometries/ExtrudeGeometry.js /^ExtrudeBufferGeometry.prototype.addShape = function ( shape, options ) {$/;" m
ExtrudeBufferGeometry.addShapeList js/three/geometries/ExtrudeGeometry.js /^ExtrudeBufferGeometry.prototype.addShapeList = function ( shapes, options ) {$/;" m
ExtrudeBufferGeometry.constructor js/three/geometries/ExtrudeGeometry.js /^ExtrudeBufferGeometry.prototype.constructor = ExtrudeBufferGeometry;$/;" m
ExtrudeBufferGeometry.getArrays js/three/geometries/ExtrudeGeometry.js /^ExtrudeBufferGeometry.prototype.getArrays = function () {$/;" m
ExtrudeGeometry js/three/geometries/ExtrudeGeometry.js /^function ExtrudeGeometry( shapes, options ) {$/;" c
ExtrudeGeometry.WorldUVGenerator.generateSideWallUV js/three/geometries/ExtrudeGeometry.js /^ },$/;" m
ExtrudeGeometry.WorldUVGenerator.generateTopUV js/three/geometries/ExtrudeGeometry.js /^ExtrudeGeometry.WorldUVGenerator = {$/;" m
ExtrudeGeometry.constructor js/three/geometries/ExtrudeGeometry.js /^ExtrudeGeometry.prototype.constructor = ExtrudeGeometry;$/;" m
ExtrudeGeometry.parameters.options js/three/geometries/ExtrudeGeometry.js /^ shapes: shapes,$/;" p
ExtrudeGeometry.parameters.shapes js/three/geometries/ExtrudeGeometry.js /^ this.parameters = {$/;" p
Face3 js/three/core/Face3.js /^function Face3( a, b, c, normal, color, materialIndex ) {$/;" c
FaceNormalsHelper js/three/helpers/FaceNormalsHelper.js /^function FaceNormalsHelper( object, size, hex, linewidth ) {$/;" c
FaceNormalsHelper.constructor js/three/helpers/FaceNormalsHelper.js /^FaceNormalsHelper.prototype.constructor = FaceNormalsHelper;$/;" m
FaceNormalsHelper.update js/three/helpers/FaceNormalsHelper.js /^FaceNormalsHelper.prototype.update = ( function () {$/;" m
FileLoader js/three/loaders/FileLoader.js /^function FileLoader( manager ) {$/;" c
Float32BufferAttribute js/three/core/BufferAttribute.js /^function Float32BufferAttribute( array, itemSize ) {$/;" f
Float32BufferAttribute js/three/core/BufferAttribute.js /^}$/;" c
Float32BufferAttribute.constructor js/three/core/BufferAttribute.js /^Float32BufferAttribute.prototype.constructor = Float32BufferAttribute;$/;" m
Float64BufferAttribute js/three/core/BufferAttribute.js /^function Float64BufferAttribute( array, itemSize ) {$/;" f
Float64BufferAttribute js/three/core/BufferAttribute.js /^}$/;" c
Float64BufferAttribute.constructor js/three/core/BufferAttribute.js /^Float64BufferAttribute.prototype.constructor = Float64BufferAttribute;$/;" m
Fog js/three/scenes/Fog.js /^function Fog ( color, near, far ) {$/;" c
Fog.clone js/three/scenes/Fog.js /^Fog.prototype.clone = function () {$/;" m
Fog.isFog js/three/scenes/Fog.js /^Fog.prototype.isFog = true;$/;" m
Fog.toJSON js/three/scenes/Fog.js /^Fog.prototype.toJSON = function ( meta ) {$/;" m
FogExp2 js/three/scenes/FogExp2.js /^function FogExp2 ( color, density ) {$/;" c
FogExp2.clone js/three/scenes/FogExp2.js /^FogExp2.prototype.clone = function () {$/;" m
FogExp2.isFogExp2 js/three/scenes/FogExp2.js /^FogExp2.prototype.isFogExp2 = true;$/;" m
FogExp2.toJSON js/three/scenes/FogExp2.js /^FogExp2.prototype.toJSON = function ( meta ) {$/;" m
Font js/three/extras/core/Font.js /^function Font( data ) {$/;" c
FontLoader js/three/loaders/FontLoader.js /^function FontLoader( manager ) {$/;" c
Frustum js/three/math/Frustum.js /^function Frustum( p0, p1, p2, p3, p4, p5 ) {$/;" c
Geometry js/loaders/ColladaLoader.js /^ function Geometry() {$/;" c
Geometry js/three/Three.Legacy.js /^} );$/;" c
Geometry js/three/core/Geometry.js /^function Geometry() {$/;" c
Geometry.computeTangents js/three/Three.Legacy.js /^Geometry.prototype.computeTangents = function () {$/;" m
Geometry.parse js/loaders/ColladaLoader.js /^ Geometry.prototype.parse = function ( element ) {$/;" m
GeometryIdCount js/three/core/Geometry.js /^function GeometryIdCount() { return count++; }$/;" f
GridHelper js/three/Three.Legacy.js /^}$/;" c
GridHelper js/three/helpers/GridHelper.js /^function GridHelper( size, divisions, color1, color2 ) {$/;" f
GridHelper js/three/helpers/GridHelper.js /^}$/;" c
GridHelper.constructor js/three/helpers/GridHelper.js /^GridHelper.prototype.constructor = GridHelper;$/;" m
GridHelper.setColors js/three/Three.Legacy.js /^GridHelper.prototype.setColors = function () {$/;" m
Group js/three/objects/Group.js /^function Group() {$/;" c
HemisphereLight js/three/lights/HemisphereLight.js /^function HemisphereLight( skyColor, groundColor, intensity ) {$/;" c
HemisphereLightHelper js/three/helpers/HemisphereLightHelper.js /^function HemisphereLightHelper( light, size ) {$/;" c
HemisphereLightHelper.constructor js/three/helpers/HemisphereLightHelper.js /^HemisphereLightHelper.prototype.constructor = HemisphereLightHelper;$/;" m
HemisphereLightHelper.dispose js/three/helpers/HemisphereLightHelper.js /^HemisphereLightHelper.prototype.dispose = function () {$/;" m
HemisphereLightHelper.update js/three/helpers/HemisphereLightHelper.js /^HemisphereLightHelper.prototype.update = function () {$/;" m
IcosahedronBufferGeometry js/three/geometries/IcosahedronGeometry.js /^function IcosahedronBufferGeometry( radius, detail ) {$/;" c
IcosahedronBufferGeometry.constructor js/three/geometries/IcosahedronGeometry.js /^IcosahedronBufferGeometry.prototype.constructor = IcosahedronBufferGeometry;$/;" m
IcosahedronBufferGeometry.parameters.detail js/three/geometries/IcosahedronGeometry.js /^ radius: radius,$/;" p
IcosahedronBufferGeometry.parameters.radius js/three/geometries/IcosahedronGeometry.js /^ this.parameters = {$/;" p
IcosahedronGeometry js/three/geometries/IcosahedronGeometry.js /^function IcosahedronGeometry( radius, detail ) {$/;" c
IcosahedronGeometry.constructor js/three/geometries/IcosahedronGeometry.js /^IcosahedronGeometry.prototype.constructor = IcosahedronGeometry;$/;" m
IcosahedronGeometry.parameters.detail js/three/geometries/IcosahedronGeometry.js /^ radius: radius,$/;" p
IcosahedronGeometry.parameters.radius js/three/geometries/IcosahedronGeometry.js /^ this.parameters = {$/;" p
ImageLoader js/three/loaders/ImageLoader.js /^function ImageLoader( manager ) {$/;" c
ImmediateRenderObject js/three/extras/objects/ImmediateRenderObject.js /^function ImmediateRenderObject( material ) {$/;" c
ImmediateRenderObject.constructor js/three/extras/objects/ImmediateRenderObject.js /^ImmediateRenderObject.prototype.constructor = ImmediateRenderObject;$/;" m
ImmediateRenderObject.isImmediateRenderObject js/three/extras/objects/ImmediateRenderObject.js /^ImmediateRenderObject.prototype.isImmediateRenderObject = true;$/;" m
ImmediateRenderObject.render js/three/extras/objects/ImmediateRenderObject.js /^ this.render = function ( renderCallback ) {};$/;" m
Input js/loaders/ColladaLoader.js /^ function Input () {$/;" c
Input.parse js/loaders/ColladaLoader.js /^ Input.prototype.parse = function ( element ) {$/;" m
InstanceCamera js/loaders/ColladaLoader.js /^ function InstanceCamera() {$/;" c
InstanceCamera.parse js/loaders/ColladaLoader.js /^ InstanceCamera.prototype.parse = function ( element ) {$/;" m
InstanceController js/loaders/ColladaLoader.js /^ function InstanceController() {$/;" c
InstanceController.parse js/loaders/ColladaLoader.js /^ InstanceController.prototype.parse = function ( element ) {$/;" m
InstanceEffect js/loaders/ColladaLoader.js /^ function InstanceEffect () {$/;" c
InstanceEffect.parse js/loaders/ColladaLoader.js /^ InstanceEffect.prototype.parse = function ( element ) {$/;" m
InstanceGeometry js/loaders/ColladaLoader.js /^ function InstanceGeometry() {$/;" c
InstanceGeometry.parse js/loaders/ColladaLoader.js /^ InstanceGeometry.prototype.parse = function ( element ) {$/;" m
InstanceLight js/loaders/ColladaLoader.js /^ function InstanceLight() {$/;" c
InstanceLight.parse js/loaders/ColladaLoader.js /^ InstanceLight.prototype.parse = function ( element ) {$/;" m
InstanceMaterial js/loaders/ColladaLoader.js /^ function InstanceMaterial () {$/;" c
InstanceMaterial.parse js/loaders/ColladaLoader.js /^ InstanceMaterial.prototype.parse = function ( element ) {$/;" m
InstancedBufferAttribute js/three/core/InstancedBufferAttribute.js /^function InstancedBufferAttribute( array, itemSize, meshPerAttribute ) {$/;" c
InstancedBufferGeometry js/three/core/InstancedBufferGeometry.js /^function InstancedBufferGeometry() {$/;" c
InstancedInterleavedBuffer js/three/core/InstancedInterleavedBuffer.js /^function InstancedInterleavedBuffer( array, stride, meshPerAttribute ) {$/;" c
Int16BufferAttribute js/three/core/BufferAttribute.js /^function Int16BufferAttribute( array, itemSize ) {$/;" f
Int16BufferAttribute js/three/core/BufferAttribute.js /^}$/;" c
Int16BufferAttribute.constructor js/three/core/BufferAttribute.js /^Int16BufferAttribute.prototype.constructor = Int16BufferAttribute;$/;" m
Int32BufferAttribute js/three/core/BufferAttribute.js /^function Int32BufferAttribute( array, itemSize ) {$/;" f
Int32BufferAttribute js/three/core/BufferAttribute.js /^}$/;" c
Int32BufferAttribute.constructor js/three/core/BufferAttribute.js /^Int32BufferAttribute.prototype.constructor = Int32BufferAttribute;$/;" m
Int8BufferAttribute js/three/core/BufferAttribute.js /^function Int8BufferAttribute( array, itemSize ) {$/;" f
Int8BufferAttribute js/three/core/BufferAttribute.js /^}$/;" c
Int8BufferAttribute.constructor js/three/core/BufferAttribute.js /^Int8BufferAttribute.prototype.constructor = Int8BufferAttribute;$/;" m
InterleavedBuffer js/three/core/InterleavedBuffer.js /^function InterleavedBuffer( array, stride ) {$/;" c
InterleavedBuffer.onUploadCallback js/three/core/InterleavedBuffer.js /^ this.onUploadCallback = function () {};$/;" m
InterleavedBuffer.updateRange.count js/three/core/InterleavedBuffer.js /^ this.updateRange = { offset: 0, count: - 1 };$/;" p
InterleavedBuffer.updateRange.offset js/three/core/InterleavedBuffer.js /^ this.updateRange = { offset: 0, count: - 1 };$/;" p
InterleavedBufferAttribute js/three/core/InterleavedBufferAttribute.js /^function InterleavedBufferAttribute( interleavedBuffer, itemSize, offset, normalized ) {$/;" c
Interpolant js/three/math/Interpolant.js /^function Interpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {$/;" c
JSONLoader js/three/loaders/JSONLoader.js /^function JSONLoader( manager ) {$/;" c
Joint js/loaders/ColladaLoader.js /^ function Joint( ) {$/;" c
Joint.limits.max js/loaders/ColladaLoader.js /^ min: 0,$/;" p
Joint.limits.min js/loaders/ColladaLoader.js /^ this.limits = {$/;" p
Joint.parse js/loaders/ColladaLoader.js /^ Joint.prototype.parse = function( element ) {$/;" m
Joint.this.limits.max js/loaders/ColladaLoader.js /^ min: 0,$/;" p
Joint.this.limits.min js/loaders/ColladaLoader.js /^ this.limits = {$/;" p
Key js/loaders/ColladaLoader.js /^ function Key ( time ) {$/;" c
Key.addTarget js/loaders/ColladaLoader.js /^ Key.prototype.addTarget = function ( fullSid, transform, member, data ) {$/;" m
Key.apply js/loaders/ColladaLoader.js /^ Key.prototype.apply = function ( opt_sid ) {$/;" m
Key.getTarget js/loaders/ColladaLoader.js /^ Key.prototype.getTarget = function ( fullSid ) {$/;" m
Key.hasTarget js/loaders/ColladaLoader.js /^ Key.prototype.hasTarget = function ( fullSid ) {$/;" m
Key.interpolate js/loaders/ColladaLoader.js /^ Key.prototype.interpolate = function ( nextKey, time ) {$/;" m
KeyframeTrack js/three/animation/KeyframeTrack.js /^function KeyframeTrack( name, times, values, interpolation ) {$/;" f
KeyframeTrack js/three/animation/KeyframeTrack.js /^}$/;" c
KeyframeTrackConstructor js/three/animation/KeyframeTrackConstructor.js /^function KeyframeTrackConstructor( name, times, values, interpolation ) {$/;" c
KeyframeTrackPrototype js/three/animation/KeyframeTrackPrototype.js /^var KeyframeTrackPrototype;$/;" v
KeyframeTrackPrototype.DefaultInterpolation js/three/animation/KeyframeTrackPrototype.js /^ ValueBufferType: Float32Array,$/;" p
KeyframeTrackPrototype.InterpolantFactoryMethodDiscrete js/three/animation/KeyframeTrackPrototype.js /^ DefaultInterpolation: InterpolateLinear,$/;" m
KeyframeTrackPrototype.InterpolantFactoryMethodLinear js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.InterpolantFactoryMethodSmooth js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.TimeBufferType js/three/animation/KeyframeTrackPrototype.js /^KeyframeTrackPrototype = {$/;" p
KeyframeTrackPrototype.ValueBufferType js/three/animation/KeyframeTrackPrototype.js /^ TimeBufferType: Float32Array,$/;" p
KeyframeTrackPrototype.getInterpolation js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.getValueSize js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.optimize js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.scale js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.setInterpolation js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.shift js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.trim js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KeyframeTrackPrototype.validate js/three/animation/KeyframeTrackPrototype.js /^ },$/;" m
KinematicsModel js/loaders/ColladaLoader.js /^ function KinematicsModel( ) {$/;" c
KinematicsModel.parse js/loaders/ColladaLoader.js /^ KinematicsModel.prototype.parse = function( element ) {$/;" m
KinematicsModel.parseCommon js/loaders/ColladaLoader.js /^ KinematicsModel.prototype.parseCommon = function( element ) {$/;" m
LOD js/three/objects/LOD.js /^function LOD() {$/;" c
LatheBufferGeometry js/three/geometries/LatheGeometry.js /^function LatheBufferGeometry( points, segments, phiStart, phiLength ) {$/;" c
LatheBufferGeometry.constructor js/three/geometries/LatheGeometry.js /^LatheBufferGeometry.prototype.constructor = LatheBufferGeometry;$/;" m
LatheBufferGeometry.parameters.phiLength js/three/geometries/LatheGeometry.js /^ phiStart: phiStart,$/;" p
LatheBufferGeometry.parameters.phiStart js/three/geometries/LatheGeometry.js /^ segments: segments,$/;" p
LatheBufferGeometry.parameters.points js/three/geometries/LatheGeometry.js /^ this.parameters = {$/;" p
LatheBufferGeometry.parameters.segments js/three/geometries/LatheGeometry.js /^ points: points,$/;" p
LatheGeometry js/three/geometries/LatheGeometry.js /^function LatheGeometry( points, segments, phiStart, phiLength ) {$/;" c
LatheGeometry.constructor js/three/geometries/LatheGeometry.js /^LatheGeometry.prototype.constructor = LatheGeometry;$/;" m
LatheGeometry.parameters.phiLength js/three/geometries/LatheGeometry.js /^ phiStart: phiStart,$/;" p
LatheGeometry.parameters.phiStart js/three/geometries/LatheGeometry.js /^ segments: segments,$/;" p
LatheGeometry.parameters.points js/three/geometries/LatheGeometry.js /^ this.parameters = {$/;" p
LatheGeometry.parameters.segments js/three/geometries/LatheGeometry.js /^ points: points,$/;" p
Layers js/three/core/Layers.js /^function Layers() {$/;" c
LensFlare js/three/objects/LensFlare.js /^function LensFlare( texture, size, distance, blending, color ) {$/;" c
LensFlarePlugin js/three/renderers/webgl/plugins/LensFlarePlugin.js /^function LensFlarePlugin( renderer, flares ) {$/;" c
LensFlarePlugin.createProgram js/three/renderers/webgl/plugins/LensFlarePlugin.js /^ function createProgram( shader ) {$/;" f
LensFlarePlugin.init js/three/renderers/webgl/plugins/LensFlarePlugin.js /^ function init() {$/;" f
LensFlarePlugin.render js/three/renderers/webgl/plugins/LensFlarePlugin.js /^ this.render = function ( scene, camera, viewport ) {$/;" m
Light js/loaders/ColladaLoader.js /^ function Light() {$/;" c
Light js/three/lights/Light.js /^function Light( color, intensity ) {$/;" c
Light.parse js/loaders/ColladaLoader.js /^ Light.prototype.parse = function ( element ) {$/;" m
Light.parseCommon js/loaders/ColladaLoader.js /^ Light.prototype.parseCommon = function ( element ) {$/;" m
Light.parseTechnique js/loaders/ColladaLoader.js /^ Light.prototype.parseTechnique = function ( element ) {$/;" m
LightShadow js/three/lights/LightShadow.js /^function LightShadow( camera ) {$/;" c
Line js/three/objects/Line.js /^function Line( geometry, material, mode ) {$/;" c
Line3 js/three/Three.Legacy.js /^} );$/;" c
Line3 js/three/math/Line3.js /^function Line3( start, end ) {$/;" c
Line3.center js/three/Three.Legacy.js /^Line3.prototype.center = function ( optionalTarget ) {$/;" m
LineBasicMaterial js/three/materials/LineBasicMaterial.js /^function LineBasicMaterial( parameters ) {$/;" c
LineBasicMaterial.Material js/three/materials/LineBasicMaterial.js /^LineBasicMaterial.prototype.copy = function ( source ) {$/;" c
LineBasicMaterial.constructor js/three/materials/LineBasicMaterial.js /^LineBasicMaterial.prototype.constructor = LineBasicMaterial;$/;" m
LineBasicMaterial.copy js/three/materials/LineBasicMaterial.js /^LineBasicMaterial.prototype.copy = function ( source ) {$/;" m
LineBasicMaterial.isLineBasicMaterial js/three/materials/LineBasicMaterial.js /^LineBasicMaterial.prototype.isLineBasicMaterial = true;$/;" m
LineCurve js/three/extras/curves/LineCurve.js /^function LineCurve( v1, v2 ) {$/;" c
LineCurve.constructor js/three/extras/curves/LineCurve.js /^LineCurve.prototype.constructor = LineCurve;$/;" m
LineCurve.getPoint js/three/extras/curves/LineCurve.js /^LineCurve.prototype.getPoint = function ( t ) {$/;" m
LineCurve.getPointAt js/three/extras/curves/LineCurve.js /^LineCurve.prototype.getPointAt = function ( u ) {$/;" m
LineCurve.getTangent js/three/extras/curves/LineCurve.js /^LineCurve.prototype.getTangent = function ( t ) {$/;" m
LineCurve.isLineCurve js/three/extras/curves/LineCurve.js /^LineCurve.prototype.isLineCurve = true;$/;" m
LineCurve3 js/three/extras/curves/LineCurve3.js /^function LineCurve3( v1, v2 ) {$/;" c
LineCurve3.constructor js/three/extras/curves/LineCurve3.js /^LineCurve3.prototype.constructor = LineCurve3;$/;" m
LineCurve3.getPoint js/three/extras/curves/LineCurve3.js /^LineCurve3.prototype.getPoint = function ( t ) {$/;" m
LineDashedMaterial js/three/materials/LineDashedMaterial.js /^function LineDashedMaterial( parameters ) {$/;" c
LineDashedMaterial.Material js/three/materials/LineDashedMaterial.js /^LineDashedMaterial.prototype.copy = function ( source ) {$/;" c
LineDashedMaterial.constructor js/three/materials/LineDashedMaterial.js /^LineDashedMaterial.prototype.constructor = LineDashedMaterial;$/;" m
LineDashedMaterial.copy js/three/materials/LineDashedMaterial.js /^LineDashedMaterial.prototype.copy = function ( source ) {$/;" m
LineDashedMaterial.isLineDashedMaterial js/three/materials/LineDashedMaterial.js /^LineDashedMaterial.prototype.isLineDashedMaterial = true;$/;" m
LineLoop js/three/objects/LineLoop.js /^function LineLoop( geometry, material ) {$/;" c
LineSegments js/three/objects/LineSegments.js /^function LineSegments( geometry, material ) {$/;" c
LineStrips js/loaders/ColladaLoader.js /^ function LineStrips() {$/;" c
LineStrips.constructor js/loaders/ColladaLoader.js /^ LineStrips.prototype.constructor = LineStrips;$/;" m
LinearInterpolant js/three/math/interpolants/LinearInterpolant.js /^function LinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {$/;" f
LinearInterpolant js/three/math/interpolants/LinearInterpolant.js /^}$/;" c
Link js/loaders/ColladaLoader.js /^ function Link( ) {$/;" c
Link.parse js/loaders/ColladaLoader.js /^ Link.prototype.parse = function( element ) {$/;" m
Loader js/three/loaders/Loader.js /^function Loader() {$/;" c
Loader.Handlers.handlers js/three/loaders/Loader.js /^Loader.Handlers = {$/;" p
Loader.onLoadComplete js/three/loaders/Loader.js /^ this.onLoadComplete = function () {};$/;" m
Loader.onLoadProgress js/three/loaders/Loader.js /^ this.onLoadProgress = function () {};$/;" m
Loader.onLoadStart js/three/loaders/Loader.js /^ this.onLoadStart = function () {};$/;" m
LoadingManager js/three/loaders/LoadingManager.js /^function LoadingManager( onLoad, onProgress, onError ) {$/;" c
LoadingManager.itemEnd js/three/loaders/LoadingManager.js /^ this.itemEnd = function ( url ) {$/;" m
LoadingManager.itemError js/three/loaders/LoadingManager.js /^ this.itemError = function ( url ) {$/;" m
LoadingManager.itemStart js/three/loaders/LoadingManager.js /^ this.itemStart = function ( url ) {$/;" m
Material js/loaders/ColladaLoader.js /^ function Material () {$/;" c
Material js/three/materials/Material.js /^function Material() {$/;" c
Material.parse js/loaders/ColladaLoader.js /^ Material.prototype.parse = function ( element ) {$/;" m
MaterialLoader js/three/loaders/MaterialLoader.js /^function MaterialLoader( manager ) {$/;" c
Math.sign js/three/polyfills.js /^if ( Math.sign === undefined ) {$/;" f
Matrix3 js/three/math/Matrix3.js /^function Matrix3() {$/;" c
Matrix4 js/three/math/Matrix4.js /^function Matrix4() {$/;" c
Mesh js/loaders/ColladaLoader.js /^ function Mesh( geometry ) {$/;" c
Mesh js/three/objects/Mesh.js /^function Mesh( geometry, material ) {$/;" c
Mesh.handlePrimitive js/loaders/ColladaLoader.js /^ Mesh.prototype.handlePrimitive = function ( primitive, geom ) {$/;" m
Mesh.parse js/loaders/ColladaLoader.js /^ Mesh.prototype.parse = function ( element ) {$/;" m
MeshBasicMaterial js/three/materials/MeshBasicMaterial.js /^function MeshBasicMaterial( parameters ) {$/;" c
MeshBasicMaterial.Material js/three/materials/MeshBasicMaterial.js /^MeshBasicMaterial.prototype.copy = function ( source ) {$/;" c
MeshBasicMaterial.constructor js/three/materials/MeshBasicMaterial.js /^MeshBasicMaterial.prototype.constructor = MeshBasicMaterial;$/;" m
MeshBasicMaterial.copy js/three/materials/MeshBasicMaterial.js /^MeshBasicMaterial.prototype.copy = function ( source ) {$/;" m
MeshBasicMaterial.isMeshBasicMaterial js/three/materials/MeshBasicMaterial.js /^MeshBasicMaterial.prototype.isMeshBasicMaterial = true;$/;" m
MeshDepthMaterial js/three/materials/MeshDepthMaterial.js /^function MeshDepthMaterial( parameters ) {$/;" c
MeshDepthMaterial.Material js/three/materials/MeshDepthMaterial.js /^MeshDepthMaterial.prototype.copy = function ( source ) {$/;" c
MeshDepthMaterial.constructor js/three/materials/MeshDepthMaterial.js /^MeshDepthMaterial.prototype.constructor = MeshDepthMaterial;$/;" m
MeshDepthMaterial.copy js/three/materials/MeshDepthMaterial.js /^MeshDepthMaterial.prototype.copy = function ( source ) {$/;" m
MeshDepthMaterial.isMeshDepthMaterial js/three/materials/MeshDepthMaterial.js /^MeshDepthMaterial.prototype.isMeshDepthMaterial = true;$/;" m
MeshLambertMaterial js/three/materials/MeshLambertMaterial.js /^function MeshLambertMaterial( parameters ) {$/;" c
MeshLambertMaterial.Material js/three/materials/MeshLambertMaterial.js /^MeshLambertMaterial.prototype.copy = function ( source ) {$/;" c
MeshLambertMaterial.constructor js/three/materials/MeshLambertMaterial.js /^MeshLambertMaterial.prototype.constructor = MeshLambertMaterial;$/;" m
MeshLambertMaterial.copy js/three/materials/MeshLambertMaterial.js /^MeshLambertMaterial.prototype.copy = function ( source ) {$/;" m
MeshLambertMaterial.isMeshLambertMaterial js/three/materials/MeshLambertMaterial.js /^MeshLambertMaterial.prototype.isMeshLambertMaterial = true;$/;" m
MeshNormalMaterial js/three/materials/MeshNormalMaterial.js /^function MeshNormalMaterial( parameters ) {$/;" c
MeshNormalMaterial.Material js/three/materials/MeshNormalMaterial.js /^MeshNormalMaterial.prototype.copy = function ( source ) {$/;" c
MeshNormalMaterial.constructor js/three/materials/MeshNormalMaterial.js /^MeshNormalMaterial.prototype.constructor = MeshNormalMaterial;$/;" m
MeshNormalMaterial.copy js/three/materials/MeshNormalMaterial.js /^MeshNormalMaterial.prototype.copy = function ( source ) {$/;" m
MeshNormalMaterial.isMeshNormalMaterial js/three/materials/MeshNormalMaterial.js /^MeshNormalMaterial.prototype.isMeshNormalMaterial = true;$/;" m
MeshPhongMaterial js/three/materials/MeshPhongMaterial.js /^function MeshPhongMaterial( parameters ) {$/;" c
MeshPhongMaterial.Material js/three/materials/MeshPhongMaterial.js /^MeshPhongMaterial.prototype.copy = function ( source ) {$/;" c
MeshPhongMaterial.constructor js/three/materials/MeshPhongMaterial.js /^MeshPhongMaterial.prototype.constructor = MeshPhongMaterial;$/;" m
MeshPhongMaterial.copy js/three/materials/MeshPhongMaterial.js /^MeshPhongMaterial.prototype.copy = function ( source ) {$/;" m
MeshPhongMaterial.isMeshPhongMaterial js/three/materials/MeshPhongMaterial.js /^MeshPhongMaterial.prototype.isMeshPhongMaterial = true;$/;" m
MeshPhysicalMaterial js/three/materials/MeshPhysicalMaterial.js /^function MeshPhysicalMaterial( parameters ) {$/;" c
MeshPhysicalMaterial.MeshStandardMaterial js/three/materials/MeshPhysicalMaterial.js /^MeshPhysicalMaterial.prototype.copy = function ( source ) {$/;" c
MeshPhysicalMaterial.constructor js/three/materials/MeshPhysicalMaterial.js /^MeshPhysicalMaterial.prototype.constructor = MeshPhysicalMaterial;$/;" m
MeshPhysicalMaterial.copy js/three/materials/MeshPhysicalMaterial.js /^MeshPhysicalMaterial.prototype.copy = function ( source ) {$/;" m
MeshPhysicalMaterial.defines.PHYSICAL js/three/materials/MeshPhysicalMaterial.js /^ this.defines = { 'PHYSICAL': '' };$/;" p
MeshPhysicalMaterial.isMeshPhysicalMaterial js/three/materials/MeshPhysicalMaterial.js /^MeshPhysicalMaterial.prototype.isMeshPhysicalMaterial = true;$/;" m
MeshPhysicalMaterial.this.defines.PHYSICAL js/three/materials/MeshPhysicalMaterial.js /^ this.defines = { 'PHYSICAL': '' };$/;" p
MeshStandardMaterial js/three/materials/MeshStandardMaterial.js /^function MeshStandardMaterial( parameters ) {$/;" c
MeshStandardMaterial.Material js/three/materials/MeshStandardMaterial.js /^MeshStandardMaterial.prototype.copy = function ( source ) {$/;" c
MeshStandardMaterial.constructor js/three/materials/MeshStandardMaterial.js /^MeshStandardMaterial.prototype.constructor = MeshStandardMaterial;$/;" m
MeshStandardMaterial.copy js/three/materials/MeshStandardMaterial.js /^MeshStandardMaterial.prototype.copy = function ( source ) {$/;" m
MeshStandardMaterial.defines.STANDARD js/three/materials/MeshStandardMaterial.js /^ this.defines = { 'STANDARD': '' };$/;" p
MeshStandardMaterial.isMeshStandardMaterial js/three/materials/MeshStandardMaterial.js /^MeshStandardMaterial.prototype.isMeshStandardMaterial = true;$/;" m
MeshStandardMaterial.this.defines.STANDARD js/three/materials/MeshStandardMaterial.js /^ this.defines = { 'STANDARD': '' };$/;" p
MeshToonMaterial js/three/materials/MeshToonMaterial.js /^function MeshToonMaterial( parameters ) {$/;" c
MeshToonMaterial.MeshPhongMaterial js/three/materials/MeshToonMaterial.js /^MeshToonMaterial.prototype.copy = function ( source ) {$/;" c
MeshToonMaterial.constructor js/three/materials/MeshToonMaterial.js /^MeshToonMaterial.prototype.constructor = MeshToonMaterial;$/;" m
MeshToonMaterial.copy js/three/materials/MeshToonMaterial.js /^MeshToonMaterial.prototype.copy = function ( source ) {$/;" m
MeshToonMaterial.defines.TOON js/three/materials/MeshToonMaterial.js /^ this.defines = { 'TOON': '' };$/;" p
MeshToonMaterial.isMeshToonMaterial js/three/materials/MeshToonMaterial.js /^MeshToonMaterial.prototype.isMeshToonMaterial = true;$/;" m
Morph js/loaders/ColladaLoader.js /^ function Morph() {$/;" c
Morph.parse js/loaders/ColladaLoader.js /^ Morph.prototype.parse = function( element ) {$/;" m
Morph.parseInputs js/loaders/ColladaLoader.js /^ Morph.prototype.parseInputs = function(element) {$/;" m
MorphBlendMesh js/three/extras/objects/MorphBlendMesh.js /^function MorphBlendMesh( geometry, material ) {$/;" c
MorphBlendMesh.autoCreateAnimations js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.autoCreateAnimations = function ( fps ) {$/;" m
MorphBlendMesh.constructor js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.constructor = MorphBlendMesh;$/;" m
MorphBlendMesh.createAnimation js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.createAnimation = function ( name, start, end, fps ) {$/;" m
MorphBlendMesh.getAnimationDuration js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.getAnimationDuration = function ( name ) {$/;" m
MorphBlendMesh.getAnimationTime js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.getAnimationTime = function ( name ) {$/;" m
MorphBlendMesh.playAnimation js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.playAnimation = function ( name ) {$/;" m
MorphBlendMesh.setAnimationDirectionBackward js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationDirectionBackward = function ( name ) {$/;" m
MorphBlendMesh.setAnimationDirectionForward js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationDirectionForward = function ( name ) {$/;" m
MorphBlendMesh.setAnimationDuration js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationDuration = function ( name, duration ) {$/;" m
MorphBlendMesh.setAnimationFPS js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationFPS = function ( name, fps ) {$/;" m
MorphBlendMesh.setAnimationTime js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationTime = function ( name, time ) {$/;" m
MorphBlendMesh.setAnimationWeight js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.setAnimationWeight = function ( name, weight ) {$/;" m
MorphBlendMesh.stopAnimation js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.stopAnimation = function ( name ) {$/;" m
MorphBlendMesh.update js/three/extras/objects/MorphBlendMesh.js /^MorphBlendMesh.prototype.update = function ( delta ) {$/;" m
MorphBlendMesh.var.animation.end js/three/extras/objects/MorphBlendMesh.js /^ start: start,$/;" p
MorphBlendMesh.var.animation.length js/three/extras/objects/MorphBlendMesh.js /^ end: end,$/;" p
MorphBlendMesh.var.animation.start js/three/extras/objects/MorphBlendMesh.js /^ var animation = {$/;" p
Node js/loaders/ColladaLoader.js /^ function Node() {$/;" c
Node.getChannelForTransform js/loaders/ColladaLoader.js /^ Node.prototype.getChannelForTransform = function( transformSid ) {$/;" m
Node.getChildById js/loaders/ColladaLoader.js /^ Node.prototype.getChildById = function ( id, recursive ) {$/;" m
Node.getChildBySid js/loaders/ColladaLoader.js /^ Node.prototype.getChildBySid = function ( sid, recursive ) {$/;" m
Node.getTransformBySid js/loaders/ColladaLoader.js /^ Node.prototype.getTransformBySid = function ( sid ) {$/;" m
Node.parse js/loaders/ColladaLoader.js /^ Node.prototype.parse = function( element ) {$/;" m
Node.updateMatrix js/loaders/ColladaLoader.js /^ Node.prototype.updateMatrix = function () {$/;" m
Number.isInteger js/three/polyfills.js /^if ( Number.isInteger === undefined ) {$/;" f
NumberKeyframeTrack js/three/animation/tracks/NumberKeyframeTrack.js /^function NumberKeyframeTrack( name, times, values, interpolation ) {$/;" f
NumberKeyframeTrack js/three/animation/tracks/NumberKeyframeTrack.js /^}$/;" c
Object3D js/three/core/Object3D.js /^function Object3D() {$/;" c
Object3D.onAfterRender js/three/core/Object3D.js /^ this.onAfterRender = function () {};$/;" m
Object3D.onBeforeRender js/three/core/Object3D.js /^ this.onBeforeRender = function () {};$/;" m
Object3D.onQuaternionChange js/three/core/Object3D.js /^ function onQuaternionChange() {$/;" f
Object3D.onRotationChange js/three/core/Object3D.js /^ function onRotationChange() {$/;" f
ObjectLoader js/three/loaders/ObjectLoader.js /^function ObjectLoader( manager ) {$/;" c
OctahedronBufferGeometry js/three/geometries/OctahedronGeometry.js /^function OctahedronBufferGeometry( radius, detail ) {$/;" c
OctahedronBufferGeometry.constructor js/three/geometries/OctahedronGeometry.js /^OctahedronBufferGeometry.prototype.constructor = OctahedronBufferGeometry;$/;" m
OctahedronBufferGeometry.parameters.detail js/three/geometries/OctahedronGeometry.js /^ radius: radius,$/;" p
OctahedronBufferGeometry.parameters.radius js/three/geometries/OctahedronGeometry.js /^ this.parameters = {$/;" p
OctahedronGeometry js/three/geometries/OctahedronGeometry.js /^function OctahedronGeometry( radius, detail ) {$/;" c
OctahedronGeometry.constructor js/three/geometries/OctahedronGeometry.js /^OctahedronGeometry.prototype.constructor = OctahedronGeometry;$/;" m
OctahedronGeometry.parameters.detail js/three/geometries/OctahedronGeometry.js /^ radius: radius,$/;" p
OctahedronGeometry.parameters.radius js/three/geometries/OctahedronGeometry.js /^ this.parameters = {$/;" p
OrthographicCamera js/three/cameras/OrthographicCamera.js /^function OrthographicCamera( left, right, top, bottom, near, far ) {$/;" c
ParametricBufferGeometry js/three/geometries/ParametricGeometry.js /^function ParametricBufferGeometry( func, slices, stacks ) {$/;" c
ParametricBufferGeometry.constructor js/three/geometries/ParametricGeometry.js /^ParametricBufferGeometry.prototype.constructor = ParametricBufferGeometry;$/;" m
ParametricBufferGeometry.parameters.func js/three/geometries/ParametricGeometry.js /^ this.parameters = {$/;" p
ParametricBufferGeometry.parameters.slices js/three/geometries/ParametricGeometry.js /^ func: func,$/;" p
ParametricBufferGeometry.parameters.stacks js/three/geometries/ParametricGeometry.js /^ slices: slices,$/;" p
ParametricGeometry js/three/geometries/ParametricGeometry.js /^function ParametricGeometry( func, slices, stacks ) {$/;" c
ParametricGeometry.constructor js/three/geometries/ParametricGeometry.js /^ParametricGeometry.prototype.constructor = ParametricGeometry;$/;" m
ParametricGeometry.parameters.func js/three/geometries/ParametricGeometry.js /^ this.parameters = {$/;" p
ParametricGeometry.parameters.slices js/three/geometries/ParametricGeometry.js /^ func: func,$/;" p
ParametricGeometry.parameters.stacks js/three/geometries/ParametricGeometry.js /^ slices: slices,$/;" p
Path js/three/extras/core/Path.js /^function Path( points ) {$/;" c
PerspectiveCamera js/three/Three.Legacy.js /^} );$/;" c
PerspectiveCamera js/three/cameras/PerspectiveCamera.js /^function PerspectiveCamera( fov, aspect, near, far ) {$/;" c
PerspectiveCamera.setLens js/three/Three.Legacy.js /^PerspectiveCamera.prototype.setLens = function ( focalLength, filmGauge ) {$/;" m
Plane js/three/Three.Legacy.js /^} );$/;" c
Plane js/three/math/Plane.js /^function Plane( normal, constant ) {$/;" c
Plane.isIntersectionLine js/three/Three.Legacy.js /^Plane.prototype.isIntersectionLine = function ( line ) {$/;" m
PlaneBufferGeometry js/three/geometries/PlaneGeometry.js /^function PlaneBufferGeometry( width, height, widthSegments, heightSegments ) {$/;" c
PlaneBufferGeometry.constructor js/three/geometries/PlaneGeometry.js /^PlaneBufferGeometry.prototype.constructor = PlaneBufferGeometry;$/;" m
PlaneBufferGeometry.parameters.height js/three/geometries/PlaneGeometry.js /^ width: width,$/;" p
PlaneBufferGeometry.parameters.heightSegments js/three/geometries/PlaneGeometry.js /^ widthSegments: widthSegments,$/;" p
PlaneBufferGeometry.parameters.width js/three/geometries/PlaneGeometry.js /^ this.parameters = {$/;" p
PlaneBufferGeometry.parameters.widthSegments js/three/geometries/PlaneGeometry.js /^ height: height,$/;" p
PlaneGeometry js/three/geometries/PlaneGeometry.js /^function PlaneGeometry( width, height, widthSegments, heightSegments ) {$/;" c
PlaneGeometry.constructor js/three/geometries/PlaneGeometry.js /^PlaneGeometry.prototype.constructor = PlaneGeometry;$/;" m
PlaneGeometry.parameters.height js/three/geometries/PlaneGeometry.js /^ width: width,$/;" p
PlaneGeometry.parameters.heightSegments js/three/geometries/PlaneGeometry.js /^ widthSegments: widthSegments,$/;" p
PlaneGeometry.parameters.width js/three/geometries/PlaneGeometry.js /^ this.parameters = {$/;" p
PlaneGeometry.parameters.widthSegments js/three/geometries/PlaneGeometry.js /^ height: height,$/;" p
PointLight js/three/lights/PointLight.js /^function PointLight( color, intensity, distance, decay ) {$/;" c
PointLightHelper js/three/helpers/PointLightHelper.js /^function PointLightHelper( light, sphereSize ) {$/;" c
PointLightHelper.update js/three/helpers/PointLightHelper.js /^PointLightHelper.prototype.update = function () {$/;" m
Points js/three/objects/Points.js /^function Points( geometry, material ) {$/;" c
PointsMaterial js/three/materials/PointsMaterial.js /^function PointsMaterial( parameters ) {$/;" c
PointsMaterial.Material js/three/materials/PointsMaterial.js /^PointsMaterial.prototype.copy = function ( source ) {$/;" c
PointsMaterial.constructor js/three/materials/PointsMaterial.js /^PointsMaterial.prototype.constructor = PointsMaterial;$/;" m
PointsMaterial.copy js/three/materials/PointsMaterial.js /^PointsMaterial.prototype.copy = function ( source ) {$/;" m
PointsMaterial.isPointsMaterial js/three/materials/PointsMaterial.js /^PointsMaterial.prototype.isPointsMaterial = true;$/;" m
PolarGridHelper js/three/helpers/PolarGridHelper.js /^function PolarGridHelper( radius, radials, circles, divisions, color1, color2 ) {$/;" f
PolarGridHelper js/three/helpers/PolarGridHelper.js /^}$/;" c
PolarGridHelper.constructor js/three/helpers/PolarGridHelper.js /^PolarGridHelper.prototype.constructor = PolarGridHelper;$/;" m
Polygons js/loaders/ColladaLoader.js /^ function Polygons () {$/;" c
Polygons.parse js/loaders/ColladaLoader.js /^ Polygons.prototype.parse = function ( element ) {$/;" m
Polygons.setVertices js/loaders/ColladaLoader.js /^ Polygons.prototype.setVertices = function ( vertices ) {$/;" m
PolyhedronBufferGeometry js/three/geometries/PolyhedronGeometry.js /^function PolyhedronBufferGeometry( vertices, indices, radius, detail ) {$/;" c
PolyhedronBufferGeometry.appplyRadius js/three/geometries/PolyhedronGeometry.js /^ function appplyRadius( radius ) {$/;" f
PolyhedronBufferGeometry.azimuth js/three/geometries/PolyhedronGeometry.js /^ function azimuth( vector ) {$/;" f
PolyhedronBufferGeometry.constructor js/three/geometries/PolyhedronGeometry.js /^PolyhedronBufferGeometry.prototype.constructor = PolyhedronBufferGeometry;$/;" m
PolyhedronBufferGeometry.correctSeam js/three/geometries/PolyhedronGeometry.js /^ function correctSeam() {$/;" f
PolyhedronBufferGeometry.correctUV js/three/geometries/PolyhedronGeometry.js /^ function correctUV( uv, stride, vector, azimuth ) {$/;" f
PolyhedronBufferGeometry.correctUVs js/three/geometries/PolyhedronGeometry.js /^ function correctUVs() {$/;" f
PolyhedronBufferGeometry.generateUVs js/three/geometries/PolyhedronGeometry.js /^ function generateUVs() {$/;" f
PolyhedronBufferGeometry.getVertexByIndex js/three/geometries/PolyhedronGeometry.js /^ function getVertexByIndex( index, vertex ) {$/;" f
PolyhedronBufferGeometry.inclination js/three/geometries/PolyhedronGeometry.js /^ function inclination( vector ) {$/;" f
PolyhedronBufferGeometry.parameters.detail js/three/geometries/PolyhedronGeometry.js /^ radius: radius,$/;" p
PolyhedronBufferGeometry.parameters.indices js/three/geometries/PolyhedronGeometry.js /^ vertices: vertices,$/;" p
PolyhedronBufferGeometry.parameters.radius js/three/geometries/PolyhedronGeometry.js /^ indices: indices,$/;" p
PolyhedronBufferGeometry.parameters.vertices js/three/geometries/PolyhedronGeometry.js /^ this.parameters = {$/;" p
PolyhedronBufferGeometry.pushVertex js/three/geometries/PolyhedronGeometry.js /^ function pushVertex( vertex ) {$/;" f
PolyhedronBufferGeometry.subdivide js/three/geometries/PolyhedronGeometry.js /^ function subdivide( detail ) {$/;" f
PolyhedronBufferGeometry.subdivideFace js/three/geometries/PolyhedronGeometry.js /^ function subdivideFace( a, b, c, detail ) {$/;" f
PolyhedronGeometry js/three/geometries/PolyhedronGeometry.js /^function PolyhedronGeometry( vertices, indices, radius, detail ) {$/;" c
PolyhedronGeometry.constructor js/three/geometries/PolyhedronGeometry.js /^PolyhedronGeometry.prototype.constructor = PolyhedronGeometry;$/;" m
PolyhedronGeometry.parameters.detail js/three/geometries/PolyhedronGeometry.js /^ radius: radius,$/;" p
PolyhedronGeometry.parameters.indices js/three/geometries/PolyhedronGeometry.js /^ vertices: vertices,$/;" p
PolyhedronGeometry.parameters.radius js/three/geometries/PolyhedronGeometry.js /^ indices: indices,$/;" p
PolyhedronGeometry.parameters.vertices js/three/geometries/PolyhedronGeometry.js /^ this.parameters = {$/;" p
Polylist js/loaders/ColladaLoader.js /^ function Polylist () {$/;" c
Polylist.constructor js/loaders/ColladaLoader.js /^ Polylist.prototype.constructor = Polylist;$/;" m
PositionalAudio js/three/audio/PositionalAudio.js /^function PositionalAudio( listener ) {$/;" c
PropertyBinding js/three/animation/PropertyBinding.js /^function PropertyBinding( rootNode, path, parsedPath ) {$/;" c
PropertyMixer js/three/animation/PropertyMixer.js /^function PropertyMixer( binding, typeName, valueSize ) {$/;" c
PureArrayUniform js/three/renderers/webgl/WebGLUniforms.js /^function PureArrayUniform( id, activeInfo, addr ) {$/;" c
QdN vendor/three.js/Three.js /^ var QdN = - sign * diff.dot( normal );$/;" v
QuadraticBezier js/three/extras/core/Interpolations.js /^function QuadraticBezier( t, p0, p1, p2 ) {$/;" f
QuadraticBezierCurve js/three/extras/curves/QuadraticBezierCurve.js /^function QuadraticBezierCurve( v0, v1, v2 ) {$/;" c
QuadraticBezierCurve.constructor js/three/extras/curves/QuadraticBezierCurve.js /^QuadraticBezierCurve.prototype.constructor = QuadraticBezierCurve;$/;" m
QuadraticBezierCurve.getPoint js/three/extras/curves/QuadraticBezierCurve.js /^QuadraticBezierCurve.prototype.getPoint = function ( t ) {$/;" m
QuadraticBezierCurve3 js/three/extras/curves/QuadraticBezierCurve3.js /^function QuadraticBezierCurve3( v0, v1, v2 ) {$/;" c
QuadraticBezierCurve3.constructor js/three/extras/curves/QuadraticBezierCurve3.js /^QuadraticBezierCurve3.prototype.constructor = QuadraticBezierCurve3;$/;" m
QuadraticBezierCurve3.getPoint js/three/extras/curves/QuadraticBezierCurve3.js /^QuadraticBezierCurve3.prototype.getPoint = function ( t ) {$/;" m
QuadraticBezierP0 js/three/extras/core/Interpolations.js /^function QuadraticBezierP0( t, p ) {$/;" f
QuadraticBezierP1 js/three/extras/core/Interpolations.js /^function QuadraticBezierP1( t, p ) {$/;" f
QuadraticBezierP2 js/three/extras/core/Interpolations.js /^function QuadraticBezierP2( t, p ) {$/;" f
Quaternion js/three/Three.Legacy.js /^};$/;" c
Quaternion js/three/math/Quaternion.js /^function Quaternion( x, y, z, w ) {$/;" c
Quaternion.multiplyVector3 js/three/Three.Legacy.js /^Quaternion.prototype.multiplyVector3 = function ( vector ) {$/;" m
QuaternionKeyframeTrack js/three/animation/tracks/QuaternionKeyframeTrack.js /^function QuaternionKeyframeTrack( name, times, values, interpolation ) {$/;" f
QuaternionKeyframeTrack js/three/animation/tracks/QuaternionKeyframeTrack.js /^}$/;" c
QuaternionLinearInterpolant js/three/math/interpolants/QuaternionLinearInterpolant.js /^function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {$/;" f
QuaternionLinearInterpolant js/three/math/interpolants/QuaternionLinearInterpolant.js /^}$/;" c
RawShaderMaterial js/three/materials/RawShaderMaterial.js /^function RawShaderMaterial( parameters ) {$/;" c
RawShaderMaterial.constructor js/three/materials/RawShaderMaterial.js /^RawShaderMaterial.prototype.constructor = RawShaderMaterial;$/;" m
RawShaderMaterial.isRawShaderMaterial js/three/materials/RawShaderMaterial.js /^RawShaderMaterial.prototype.isRawShaderMaterial = true;$/;" m
Ray js/three/math/Ray.js /^function Ray( origin, direction ) {$/;" c
Raycaster js/three/core/Raycaster.js /^function Raycaster( origin, direction, near, far ) {$/;" c
Raycaster vendor/three.js/Three.js /^};$/;" c
Raycaster.params.Mesh js/three/core/Raycaster.js /^ this.params = {$/;" p
RePathPart js/three/renderers/webgl/WebGLUniforms.js /^var RePathPart = \/([\\w\\d_]+)(\\])?(\\[|\\.)?\/g;$/;" v
RectAreaLight js/three/lights/RectAreaLight.js /^function RectAreaLight( color, intensity, width, height ) {$/;" c
RectAreaLightHelper js/three/helpers/RectAreaLightHelper.js /^function RectAreaLightHelper( light ) {$/;" c
RectAreaLightHelper.constructor js/three/helpers/RectAreaLightHelper.js /^RectAreaLightHelper.prototype.constructor = RectAreaLightHelper;$/;" m
RectAreaLightHelper.dispose js/three/helpers/RectAreaLightHelper.js /^RectAreaLightHelper.prototype.dispose = function () {$/;" m
RectAreaLightHelper.update js/three/helpers/RectAreaLightHelper.js /^RectAreaLightHelper.prototype.update = function () {$/;" m
Relic.RelicConfig relicAssets/carbon/config.js /^var obj_triangleGrid,mat_triangleGrid;$/;" f
Relic.RelicScene js/relics/relic.js /^relic_update = function() {};$/;" c
Relic.RelicScene.update js/relics/relic.js /^ this.update = function() {}$/;" m
Relic.relicParams.U_EMISSION_COLOUR relicAssets/carbon/config.js /^Relic.relicParams['hexagons'] = {$/;" p
RenderList vendor/three.js/Three.js /^ var RenderList = function () {$/;" f
RenderList.checkBackfaceCulling vendor/three.js/Three.js /^ var checkBackfaceCulling = function ( v1, v2, v3 ) {$/;" f
RenderList.checkTriangleVisibility vendor/three.js/Three.js /^ var checkTriangleVisibility = function ( v1, v2, v3 ) {$/;" f
RenderList.projectVertex vendor/three.js/Three.js /^ var projectVertex = function ( vertex ) {$/;" f
RenderList.pushLine vendor/three.js/Three.js /^ var pushLine = function ( a, b ) {$/;" f
RenderList.pushNormal vendor/three.js/Three.js /^ var pushNormal = function ( x, y, z ) {$/;" f
RenderList.pushTriangle vendor/three.js/Three.js /^ var pushTriangle = function ( a, b, c ) {$/;" f
RenderList.pushUv vendor/three.js/Three.js /^ var pushUv = function ( x, y ) {$/;" f
RenderList.pushVertex vendor/three.js/Three.js /^ var pushVertex = function ( x, y, z ) {$/;" f
RenderList.setObject vendor/three.js/Three.js /^ var setObject = function ( value ) {$/;" f
RingBufferGeometry js/three/geometries/RingGeometry.js /^function RingBufferGeometry( innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength ) {$/;" c
RingBufferGeometry.constructor js/three/geometries/RingGeometry.js /^RingBufferGeometry.prototype.constructor = RingBufferGeometry;$/;" m
RingBufferGeometry.parameters.innerRadius js/three/geometries/RingGeometry.js /^ this.parameters = {$/;" p
RingBufferGeometry.parameters.outerRadius js/three/geometries/RingGeometry.js /^ innerRadius: innerRadius,$/;" p
RingBufferGeometry.parameters.phiSegments js/three/geometries/RingGeometry.js /^ thetaSegments: thetaSegments,$/;" p
RingBufferGeometry.parameters.thetaLength js/three/geometries/RingGeometry.js /^ thetaStart: thetaStart,$/;" p
RingBufferGeometry.parameters.thetaSegments js/three/geometries/RingGeometry.js /^ outerRadius: outerRadius,$/;" p
RingBufferGeometry.parameters.thetaStart js/three/geometries/RingGeometry.js /^ phiSegments: phiSegments,$/;" p
RingGeometry js/three/geometries/RingGeometry.js /^function RingGeometry( innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength ) {$/;" c
RingGeometry.constructor js/three/geometries/RingGeometry.js /^RingGeometry.prototype.constructor = RingGeometry;$/;" m
RingGeometry.parameters.innerRadius js/three/geometries/RingGeometry.js /^ this.parameters = {$/;" p
RingGeometry.parameters.outerRadius js/three/geometries/RingGeometry.js /^ innerRadius: innerRadius,$/;" p
RingGeometry.parameters.phiSegments js/three/geometries/RingGeometry.js /^ thetaSegments: thetaSegments,$/;" p
RingGeometry.parameters.thetaLength js/three/geometries/RingGeometry.js /^ thetaStart: thetaStart,$/;" p
RingGeometry.parameters.thetaSegments js/three/geometries/RingGeometry.js /^ outerRadius: outerRadius,$/;" p
RingGeometry.parameters.thetaStart js/three/geometries/RingGeometry.js /^ phiSegments: phiSegments,$/;" p
SFRT js/shaders/shaderfrog/shaderFrog_library.js /^var SFRT;$/;" v
STATE.NONE vendor/three.js/OrbitControls.js /^ var STATE = { NONE: - 1, ROTATE: 0, DOLLY: 1, PAN: 2, TOUCH_ROTATE: 3, TOUCH_DOLLY: 4, TOUCH_PAN: 5 };$/;" p
Sampler js/loaders/ColladaLoader.js /^ function Sampler ( animation ) {$/;" c
Sampler.create js/loaders/ColladaLoader.js /^ Sampler.prototype.create = function () {$/;" m
Sampler.getData js/loaders/ColladaLoader.js /^ Sampler.prototype.getData = function ( type, ndx, member ) {$/;" m
Sampler.parse js/loaders/ColladaLoader.js /^ Sampler.prototype.parse = function ( element ) {$/;" m
Sampler2D js/loaders/ColladaLoader.js /^ function Sampler2D ( effect ) {$/;" c
Sampler2D.parse js/loaders/ColladaLoader.js /^ Sampler2D.prototype.parse = function ( element ) {$/;" m
Scene js/three/scenes/Scene.js /^function Scene () {$/;" c
SceneUtils.attach js/three/extras/SceneUtils.js /^ },$/;" m
SceneUtils.createMultiMaterialObject js/three/extras/SceneUtils.js /^var SceneUtils = {$/;" m
SceneUtils.detach js/three/extras/SceneUtils.js /^ },$/;" m
Shader js/loaders/ColladaLoader.js /^ function Shader ( type, effect ) {$/;" c
Shader.create js/loaders/ColladaLoader.js /^ Shader.prototype.create = function() {$/;" m
Shader.parse js/loaders/ColladaLoader.js /^ Shader.prototype.parse = function ( element ) {$/;" m
ShaderFrogRuntime.r js/shaderfrog-runtime.min.js /^var ShaderFrogRuntime=function(e){function r(t){if(a[t])return a[t].exports;var n=a[t]={exports:{},id:t,loaded:!1};return e[t].call(n.exports,n,n.exports,r),n.loaded=!0,n.exports}var a={};return r.m=e,r.c=a,r.p="",r(0)}([function(e,r,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}function n(){}function i(){var e=arguments.length,r=arguments[0];if(2>e)return r;for(var a=1;e>a;a++)for(var t=arguments[a],n=Object.keys(t||{}),i=n.length,s=0;i>s;s++){var o=n[s];r[o]=t[o]}return r}function s(e){return i({},e)}function o(e){var r=s(e),a=void 0,t=void 0;for(a=0;t=arguments[a++ +1];)delete r[t];return r}Object.defineProperty(r,"__esModule",{value:!0});var u=a(1),d=t(u);n.prototype={mainCamera:null,cubeCameras:{},reserved:{time:null,cameraPosition:null},umap:{"float":{type:"f",value:0},"int":{type:"i",value:0},vec2:{type:"v2",value:function(){return new d["default"].Vector2}},vec3:{type:"v3",value:function(){return new d["default"].Vector3}},vec4:{type:"v4",value:function(){return new d["default"].Vector4}},samplerCube:{type:"t"},sampler2D:{type:"t"}},getUmap:function(e){var r=this.umap[e].value;return"function"==typeof r?r():r},load:function(e,r){var a=this,t=e,n="string"==typeof e;n&&(t=[e]);for(var i=new Array(t.length),s=0,o=function(e,o){var u=new d["default"].XHRLoader;u.load(o,function(u){var d=void 0;try{d=JSON.parse(u),delete d.id}catch(m){throw new Error("Could not parse shader"+o+"! Please verify the URL is correct.")}a.add(d.name,d),i[e]=d,++s===t.length&&r(n?i[0]:i)})},u=0;u<t.length;u++)o(u,t[u])},registerCamera:function(e){if(!(e instanceof d["default"].Camera))throw new Error("Cannot register a non-camera as a camera!");this.mainCamera=e},registerCubeCamera:function(e,r){if(!r.renderTarget)throw new Error("Cannot register a non-camera as a camera!");this.cubeCameras[e]=r},unregisterCamera:function(e){if(e in this.cubeCameras)delete this.cubeCameras[e];else{if(e!==this.mainCamera)throw new Error("You never registered camera "+e);delete this.mainCamera}},updateSource:function(e,r,a){if(a=a||"name",!this.shaderTypes[e])throw new Error("Runtime Error: Cannot update shader "+e+" because it has not been added.");var t=this.add(e,r),n=void 0,s=void 0;for(s=0;n=this.runningShaders[s++];)n[a]===e&&(i(n.material,o(t,"id")),n.material.needsUpdate=!0)},renameShader:function(e,r){var a=void 0,t=void 0;if(!(e in this.shaderTypes))throw new Error("Could not rename shader "+e+" to "+r+". It does not exist.");for(this.shaderTypes[r]=this.shaderTypes[e],delete this.shaderTypes[e],a=0;t=this.runningShaders[a++];)t.name===e&&(t.name=r)},get:function(e){var r=this.shaderTypes[e];return r.initted||this.create(e),r.material},add:function(e,r){var a=s(r),t=void 0;a.fragmentShader=r.fragment,a.vertexShader=r.vertex,delete a.fragment,delete a.vertex;for(var n in a.uniforms)t=a.uniforms[n],null===t.value&&(a.uniforms[n].value=this.getUmap(t.glslType));return e in this.shaderTypes?i(this.shaderTypes[e],a):this.shaderTypes[e]=a,a},create:function(e){var r=this.shaderTypes[e];return r.material=new d["default"].RawShaderMaterial(r),this.runningShaders.push(r),r.init&&r.init(r.material),r.material.needsUpdate=!0,r.initted=!0,r.material},updateRuntime:function(e,r,a){a=a||"name";var t=void 0,n=void 0,i=void 0,s=void 0;for(n=0;t=this.runningShaders[n++];)if(t[a]===e)for(i in r.uniforms)i in this.reserved||i in t.material.uniforms&&(s=r.uniforms[i],"t"===s.type&&"string"==typeof s.value&&(s.value=this.cubeCameras[s.value].renderTarget),t.material.uniforms[i].value=r.uniforms[i].value)},updateShaders:function(e,r){var a=void 0,t=void 0;for(r=r||{},t=0;a=this.runningShaders[t++];){for(var n in r.uniforms)n in a.material.uniforms&&(a.material.uniforms[n].value=r.uniforms[n]);"cameraPosition"in a.material.uniforms&&this.mainCamera&&(a.material.uniforms.cameraPosition.value=this.mainCamera.position.clone()),"viewMatrix"in a.material.uniforms&&this.mainCamera&&(a.material.uniforms.viewMatrix.value=this.mainCamera.matrixWorldInverse),"time"in a.material.uniforms&&(a.material.uniforms.time.value=e)}},shaderTypes:{},runningShaders:[]},r["default"]=n,e.exports=r["default"]},function(e,r){e.exports=THREE}]);/;" f
ShaderLib.basic js/three/renderers/shaders/ShaderLib.js /^var ShaderLib = {$/;" p
ShaderLib.physical.uniforms js/three/renderers/shaders/ShaderLib.js /^ShaderLib.physical = {$/;" p
ShaderLib.vertexShader js/shaders/OceanShaders.js /^THREE.ShaderLib[ 'ocean_sim_vertex' ] = {$/;" p
ShaderMaterial js/three/materials/ShaderMaterial.js /^function ShaderMaterial( parameters ) {$/;" c
ShaderMaterial.Material js/three/materials/ShaderMaterial.js /^ShaderMaterial.prototype.copy = function ( source ) {$/;" c
ShaderMaterial.constructor js/three/materials/ShaderMaterial.js /^ShaderMaterial.prototype.constructor = ShaderMaterial;$/;" m
ShaderMaterial.copy js/three/materials/ShaderMaterial.js /^ShaderMaterial.prototype.copy = function ( source ) {$/;" m
ShaderMaterial.defaultAttributeValues.color js/three/materials/ShaderMaterial.js /^ this.defaultAttributeValues = {$/;" p
ShaderMaterial.extensions.derivatives js/three/materials/ShaderMaterial.js /^ this.extensions = {$/;" p
ShaderMaterial.extensions.drawBuffers js/three/materials/ShaderMaterial.js /^ fragDepth: false, \/\/ set to use fragment depth values$/;" p
ShaderMaterial.extensions.fragDepth js/three/materials/ShaderMaterial.js /^ derivatives: false, \/\/ set to use derivatives$/;" p
ShaderMaterial.extensions.shaderTextureLOD js/three/materials/ShaderMaterial.js /^ drawBuffers: false, \/\/ set to use draw buffers$/;" p
ShaderMaterial.isShaderMaterial js/three/materials/ShaderMaterial.js /^ShaderMaterial.prototype.isShaderMaterial = true;$/;" m
ShaderMaterial.toJSON js/three/materials/ShaderMaterial.js /^ShaderMaterial.prototype.toJSON = function ( meta ) {$/;" m
ShaderRuntime js/ShaderRuntime.js /^function ShaderRuntime() {}$/;" c
ShaderRuntime js/ShaderRuntime.js /^function ShaderRuntime() {}$/;" f
ShaderRuntime.cubeCameras js/ShaderRuntime.js /^ mainCamera: null,$/;" p
ShaderRuntime.mainCamera js/ShaderRuntime.js /^ShaderRuntime.prototype = {$/;" p
ShadowMaterial js/three/materials/ShadowMaterial.js /^function ShadowMaterial( parameters ) {$/;" c
ShadowMaterial.constructor js/three/materials/ShadowMaterial.js /^ShadowMaterial.prototype.constructor = ShadowMaterial;$/;" m
ShadowMaterial.isShadowMaterial js/three/materials/ShadowMaterial.js /^ShadowMaterial.prototype.isShadowMaterial = true;$/;" m
Shape js/three/extras/core/Shape.js /^function Shape() {$/;" c
ShapeBufferGeometry js/three/geometries/ShapeGeometry.js /^function ShapeBufferGeometry( shapes, curveSegments ) {$/;" c
ShapeBufferGeometry.addShape js/three/geometries/ShapeGeometry.js /^ function addShape( shape ) {$/;" f
ShapeBufferGeometry.constructor js/three/geometries/ShapeGeometry.js /^ShapeBufferGeometry.prototype.constructor = ShapeBufferGeometry;$/;" m
ShapeBufferGeometry.parameters.curveSegments js/three/geometries/ShapeGeometry.js /^ shapes: shapes,$/;" p
ShapeBufferGeometry.parameters.shapes js/three/geometries/ShapeGeometry.js /^ this.parameters = {$/;" p
ShapeGeometry js/three/geometries/ShapeGeometry.js /^function ShapeGeometry( shapes, curveSegments ) {$/;" c
ShapeGeometry.constructor js/three/geometries/ShapeGeometry.js /^ShapeGeometry.prototype.constructor = ShapeGeometry;$/;" m
ShapeGeometry.parameters.curveSegments js/three/geometries/ShapeGeometry.js /^ shapes: shapes,$/;" p
ShapeGeometry.parameters.shapes js/three/geometries/ShapeGeometry.js /^ this.parameters = {$/;" p
ShapePath js/three/extras/core/ShapePath.js /^function ShapePath() {$/;" c
ShapeUtils.area js/three/extras/ShapeUtils.js /^var ShapeUtils = {$/;" m
ShapeUtils.triangulate js/three/extras/ShapeUtils.js /^ },$/;" p
SingleUniform js/three/renderers/webgl/WebGLUniforms.js /^function SingleUniform( id, activeInfo, addr ) {$/;" c
Skeleton js/three/objects/Skeleton.js /^function Skeleton( bones, boneInverses ) {$/;" c
SkeletonHelper js/three/helpers/SkeletonHelper.js /^function SkeletonHelper( object ) {$/;" c
SkeletonHelper.constructor js/three/helpers/SkeletonHelper.js /^SkeletonHelper.prototype.constructor = SkeletonHelper;$/;" m
SkeletonHelper.getBoneList js/three/helpers/SkeletonHelper.js /^SkeletonHelper.prototype.getBoneList = function( object ) {$/;" m
SkeletonHelper.update js/three/helpers/SkeletonHelper.js /^SkeletonHelper.prototype.update = function () {$/;" m
Skin js/loaders/ColladaLoader.js /^ function Skin() {$/;" c
Skin.parse js/loaders/ColladaLoader.js /^ Skin.prototype.parse = function( element ) {$/;" m
Skin.parseJoints js/loaders/ColladaLoader.js /^ Skin.prototype.parseJoints = function ( element, sources ) {$/;" m
Skin.parseWeights js/loaders/ColladaLoader.js /^ Skin.prototype.parseWeights = function ( element, sources ) {$/;" m
SkinnedMesh js/three/objects/SkinnedMesh.js /^function SkinnedMesh( geometry, material ) {$/;" c
Source js/loaders/ColladaLoader.js /^ function Source ( id ) {$/;" c
Source.parse js/loaders/ColladaLoader.js /^ Source.prototype.parse = function ( element ) {$/;" m
Source.read js/loaders/ColladaLoader.js /^ Source.prototype.read = function () {$/;" m
Sphere js/three/math/Sphere.js /^function Sphere( center, radius ) {$/;" c
SphereBufferGeometry js/three/geometries/SphereGeometry.js /^function SphereBufferGeometry( radius, widthSegments, heightSegments, phiStart, phiLength, thetaStart, thetaLength ) {$/;" c
SphereBufferGeometry.constructor js/three/geometries/SphereGeometry.js /^SphereBufferGeometry.prototype.constructor = SphereBufferGeometry;$/;" m
SphereBufferGeometry.parameters.heightSegments js/three/geometries/SphereGeometry.js /^ widthSegments: widthSegments,$/;" p
SphereBufferGeometry.parameters.phiLength js/three/geometries/SphereGeometry.js /^ phiStart: phiStart,$/;" p
SphereBufferGeometry.parameters.phiStart js/three/geometries/SphereGeometry.js /^ heightSegments: heightSegments,$/;" p
SphereBufferGeometry.parameters.radius js/three/geometries/SphereGeometry.js /^ this.parameters = {$/;" p
SphereBufferGeometry.parameters.thetaLength js/three/geometries/SphereGeometry.js /^ thetaStart: thetaStart,$/;" p
SphereBufferGeometry.parameters.thetaStart js/three/geometries/SphereGeometry.js /^ phiLength: phiLength,$/;" p
SphereBufferGeometry.parameters.widthSegments js/three/geometries/SphereGeometry.js /^ radius: radius,$/;" p
SphereGeometry js/three/geometries/SphereGeometry.js /^function SphereGeometry( radius, widthSegments, heightSegments, phiStart, phiLength, thetaStart, thetaLength ) {$/;" c
SphereGeometry.constructor js/three/geometries/SphereGeometry.js /^SphereGeometry.prototype.constructor = SphereGeometry;$/;" m
SphereGeometry.parameters.heightSegments js/three/geometries/SphereGeometry.js /^ widthSegments: widthSegments,$/;" p
SphereGeometry.parameters.phiLength js/three/geometries/SphereGeometry.js /^ phiStart: phiStart,$/;" p
SphereGeometry.parameters.phiStart js/three/geometries/SphereGeometry.js /^ heightSegments: heightSegments,$/;" p
SphereGeometry.parameters.radius js/three/geometries/SphereGeometry.js /^ this.parameters = {$/;" p
SphereGeometry.parameters.thetaLength js/three/geometries/SphereGeometry.js /^ thetaStart: thetaStart,$/;" p
SphereGeometry.parameters.thetaStart js/three/geometries/SphereGeometry.js /^ phiLength: phiLength,$/;" p
SphereGeometry.parameters.widthSegments js/three/geometries/SphereGeometry.js /^ radius: radius,$/;" p
Spherical js/three/math/Spherical.js /^function Spherical( radius, phi, theta ) {$/;" c
Spline js/three/Three.Legacy.js /^}$/;" c
SplineCurve js/three/extras/curves/SplineCurve.js /^function SplineCurve( points \/* array of Vector2 *\/ ) {$/;" c
SplineCurve.constructor js/three/extras/curves/SplineCurve.js /^SplineCurve.prototype.constructor = SplineCurve;$/;" m
SplineCurve.getPoint js/three/extras/curves/SplineCurve.js /^SplineCurve.prototype.getPoint = function ( t ) {$/;" m
SplineCurve.isSplineCurve js/three/extras/curves/SplineCurve.js /^SplineCurve.prototype.isSplineCurve = true;$/;" m
SplineCurve3 js/three/Three.Legacy.js /^}$/;" c
SpotLight js/three/lights/SpotLight.js /^function SpotLight( color, intensity, distance, angle, penumbra, decay ) {$/;" c
SpotLightHelper js/three/helpers/SpotLightHelper.js /^function SpotLightHelper( light ) {$/;" c
SpotLightHelper.constructor js/three/helpers/SpotLightHelper.js /^SpotLightHelper.prototype.constructor = SpotLightHelper;$/;" m
SpotLightHelper.dispose js/three/helpers/SpotLightHelper.js /^SpotLightHelper.prototype.dispose = function () {$/;" m
SpotLightHelper.update js/three/helpers/SpotLightHelper.js /^SpotLightHelper.prototype.update = function () {$/;" m
SpotLightShadow js/three/lights/SpotLightShadow.js /^function SpotLightShadow() {$/;" f
SpotLightShadow js/three/lights/SpotLightShadow.js /^}$/;" c
Sprite js/three/objects/Sprite.js /^function Sprite( material ) {$/;" c
SpriteMaterial js/three/materials/SpriteMaterial.js /^function SpriteMaterial( parameters ) {$/;" c
SpriteMaterial.Material js/three/materials/SpriteMaterial.js /^SpriteMaterial.prototype.copy = function ( source ) {$/;" c
SpriteMaterial.constructor js/three/materials/SpriteMaterial.js /^SpriteMaterial.prototype.constructor = SpriteMaterial;$/;" m
SpriteMaterial.copy js/three/materials/SpriteMaterial.js /^SpriteMaterial.prototype.copy = function ( source ) {$/;" m
SpriteMaterial.isSpriteMaterial js/three/materials/SpriteMaterial.js /^SpriteMaterial.prototype.isSpriteMaterial = true;$/;" m
SpritePlugin js/three/renderers/webgl/plugins/SpritePlugin.js /^function SpritePlugin( renderer, sprites ) {$/;" c
SpritePlugin.createProgram js/three/renderers/webgl/plugins/SpritePlugin.js /^ function createProgram() {$/;" f
SpritePlugin.init js/three/renderers/webgl/plugins/SpritePlugin.js /^ function init() {$/;" f
SpritePlugin.painterSortStable js/three/renderers/webgl/plugins/SpritePlugin.js /^ function painterSortStable( a, b ) {$/;" f
SpritePlugin.render js/three/renderers/webgl/plugins/SpritePlugin.js /^ this.render = function ( scene, camera ) {$/;" m
Stats vendor/three.js/Stats.js /^var Stats=function(){var l=Date.now(),m=l,g=0,n=Infinity,o=0,h=0,p=Infinity,q=0,r=0,s=0,f=document.createElement("div");f.id="stats";f.addEventListener("mousedown",function(b){b.preventDefault();t(++s%2)},!1);f.style.cssText="width:80px;opacity:0.9;cursor:pointer";var a=document.createElement("div");a.id="fps";a.style.cssText="padding:0 0 3px 3px;text-align:left;background-color:#002";f.appendChild(a);var i=document.createElement("div");i.id="fpsText";i.style.cssText="color:#0ff;font-family:Helvetica,Arial,sans-serif;font-size:9px;font-weight:bold;line-height:15px";$/;" f
Stats.t vendor/three.js/Stats.js /^k.id="msText";k.style.cssText="color:#0f0;font-family:Helvetica,Arial,sans-serif;font-size:9px;font-weight:bold;line-height:15px";k.innerHTML="MS";d.appendChild(k);var e=document.createElement("div");e.id="msGraph";e.style.cssText="position:relative;width:74px;height:30px;background-color:#0f0";for(d.appendChild(e);74>e.children.length;)j=document.createElement("span"),j.style.cssText="width:1px;height:30px;float:left;background-color:#131",e.appendChild(j);var t=function(b){s=b;switch(s){case 0:a.style.display=$/;" f
StencilBuffer js/three/renderers/webgl/WebGLState.js /^ function StencilBuffer() {$/;" f
StereoCamera js/three/cameras/StereoCamera.js /^function StereoCamera() {$/;" c
StringKeyframeTrack js/three/animation/tracks/StringKeyframeTrack.js /^function StringKeyframeTrack( name, times, values, interpolation ) {$/;" f
StringKeyframeTrack js/three/animation/tracks/StringKeyframeTrack.js /^}$/;" c
StructuredUniform js/three/renderers/webgl/WebGLUniforms.js /^function StructuredUniform( id ) {$/;" c
StructuredUniform.setValue js/three/renderers/webgl/WebGLUniforms.js /^StructuredUniform.prototype.setValue = function ( gl, value ) {$/;" m
Surface js/loaders/ColladaLoader.js /^ function Surface ( effect ) {$/;" c
Surface.parse js/loaders/ColladaLoader.js /^ Surface.prototype.parse = function ( element ) {$/;" m
TEXTURE_FILTER.LinearFilter js/three/loaders/ObjectLoader.js /^ NearestMipMapLinearFilter: NearestMipMapLinearFilter,$/;" p
TEXTURE_FILTER.LinearMipMapLinearFilter js/three/loaders/ObjectLoader.js /^ LinearMipMapNearestFilter: LinearMipMapNearestFilter,$/;" p
TEXTURE_FILTER.LinearMipMapNearestFilter js/three/loaders/ObjectLoader.js /^ LinearFilter: LinearFilter,$/;" p
TEXTURE_FILTER.NearestFilter js/three/loaders/ObjectLoader.js /^var TEXTURE_FILTER = {$/;" p
TEXTURE_FILTER.NearestMipMapLinearFilter js/three/loaders/ObjectLoader.js /^ NearestMipMapNearestFilter: NearestMipMapNearestFilter,$/;" p
TEXTURE_FILTER.NearestMipMapNearestFilter js/three/loaders/ObjectLoader.js /^ NearestFilter: NearestFilter,$/;" p
TEXTURE_MAPPING.CubeReflectionMapping js/three/loaders/ObjectLoader.js /^ UVMapping: UVMapping,$/;" p
TEXTURE_MAPPING.CubeRefractionMapping js/three/loaders/ObjectLoader.js /^ CubeReflectionMapping: CubeReflectionMapping,$/;" p
TEXTURE_MAPPING.CubeUVReflectionMapping js/three/loaders/ObjectLoader.js /^ SphericalReflectionMapping: SphericalReflectionMapping,$/;" p
TEXTURE_MAPPING.CubeUVRefractionMapping js/three/loaders/ObjectLoader.js /^ CubeUVReflectionMapping: CubeUVReflectionMapping,$/;" p
TEXTURE_MAPPING.EquirectangularReflectionMapping js/three/loaders/ObjectLoader.js /^ CubeRefractionMapping: CubeRefractionMapping,$/;" p
TEXTURE_MAPPING.EquirectangularRefractionMapping js/three/loaders/ObjectLoader.js /^ EquirectangularReflectionMapping: EquirectangularReflectionMapping,$/;" p
TEXTURE_MAPPING.SphericalReflectionMapping js/three/loaders/ObjectLoader.js /^ EquirectangularRefractionMapping: EquirectangularRefractionMapping,$/;" p
TEXTURE_MAPPING.UVMapping js/three/loaders/ObjectLoader.js /^var TEXTURE_MAPPING = {$/;" p
TEXTURE_WRAPPING.ClampToEdgeWrapping js/three/loaders/ObjectLoader.js /^ RepeatWrapping: RepeatWrapping,$/;" p
TEXTURE_WRAPPING.MirroredRepeatWrapping js/three/loaders/ObjectLoader.js /^ ClampToEdgeWrapping: ClampToEdgeWrapping,$/;" p
TEXTURE_WRAPPING.RepeatWrapping js/three/loaders/ObjectLoader.js /^var TEXTURE_WRAPPING = {$/;" p
THREE.AdaptiveToneMappingPass js/postprocessing/AdaptiveToneMappingPass.js /^\/**$/;" c
THREE.AdaptiveToneMappingPass.adaptLuminanceShader.defines js/postprocessing/AdaptiveToneMappingPass.js /^ this.adaptLuminanceShader = {$/;" p
THREE.AmbientLight vendor/three.js/Three.js /^};$/;" c
THREE.AmbientLight vendor/three.js/Three.js /^};$/;" f
THREE.AmbientLight.THREE.Light vendor/three.js/Three.js /^ var light = new THREE.AmbientLight();$/;" c
THREE.AmbientLight.clone vendor/three.js/Three.js /^THREE.AmbientLight.prototype.clone = function () {$/;" m
THREE.Animation vendor/three.js/Three.js /^}() );$/;" c
THREE.Animation.getNextKeyWith vendor/three.js/Three.js /^THREE.Animation.prototype.getNextKeyWith = function ( type, h, key ) {$/;" m
THREE.Animation.getPrevKeyWith vendor/three.js/Three.js /^THREE.Animation.prototype.getPrevKeyWith = function ( type, h, key ) {$/;" m
THREE.Animation.keyTypes vendor/three.js/Three.js /^THREE.Animation.prototype.keyTypes = [ "pos", "rot", "scl" ];$/;" m
THREE.Animation.pause vendor/three.js/Three.js /^THREE.Animation.prototype.pause = function() {$/;" m
THREE.Animation.play vendor/three.js/Three.js /^THREE.Animation.prototype.play = function ( startTime, weight ) {$/;" m
THREE.Animation.reset vendor/three.js/Three.js /^THREE.Animation.prototype.reset = function () {$/;" m
THREE.Animation.stop vendor/three.js/Three.js /^THREE.Animation.prototype.stop = function() {$/;" m
THREE.Animation.update vendor/three.js/Three.js /^THREE.Animation.prototype.update = (function(){$/;" m
THREE.ArcCurve vendor/three.js/Three.js /^};$/;" c
THREE.ArcCurve vendor/three.js/Three.js /^};$/;" f
THREE.AreaLight vendor/three.js/Three.js /^};$/;" c
THREE.ArrowHelper vendor/three.js/Three.js /^THREE.AxisHelper.prototype = Object.create( THREE.Line.prototype );$/;" c
THREE.ArrowHelper.setColor vendor/three.js/Three.js /^THREE.ArrowHelper.prototype.setColor = function ( color ) {$/;" m
THREE.ArrowHelper.setDirection vendor/three.js/Three.js /^THREE.ArrowHelper.prototype.setDirection = function () {$/;" m