forked from BabylonJS/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2009 lines (1985 loc) · 111 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>BabylonJS - 3D engine based on WebGL/Web Audio and JavaScript</title>
<meta name="description" content="A complete JavaScript framework for building 3D games with HTML5, WebGL and Web Audio">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, shrink-to-fit=no, user-scalable=no">
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicon/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/img/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/img/favicon/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/img/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/img/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/img/favicon/manifest.json">
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/img/favicon/favicon.ico">
<link rel="author" href="humans.txt" />
<meta name="msapplication-TileColor" content="#555555">
<meta name="msapplication-TileImage" content="/img/favicon/mstile-144x144.png">
<meta name="msapplication-config" content="/img/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- FB -->
<meta property="og:title" content="Babylon.js demos & documentation" />
<meta property="og:site_name" content="Babylon.js" />
<meta property="og:url"
content="http://www.babylonjs.com" />
<meta property="og:description"
content="Babylon.js is an open-source 3D gaming framework using WebGL, Web Audio and other API like Gamepad. Models can be exported from Blender, 3DS Max & Unity. It supports PBR." />
<meta property="fb:app_id" content="1673000116277273" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://www.babylonjs.com/assets/Logo.png" />
<meta property="og:locale" content="en_US" />
<meta property="article:author" content="https://www.facebook.com/davrous" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@davrous" />
<meta name="twitter:creator" content="@davrous" />
<meta name="twitter:url" content="http://www.babylonjs.com" />
<meta name="twitter:title" content="Babylon.js demos & documentation" />
<meta name="twitter:description" content="Babylon.js is an open-source 3D gaming framework using WebGL, Web Audio and other API like Gamepad. Models can be exported from Blender, 3DS Max & Unity. It supports PBR." />
<meta name="twitter:image" content="http://www.babylonjs.com/assets/Logo.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700|Roboto+Condensed:700">
<link rel="stylesheet" href="scss/main.css">
<script src="//cdn.webglstats.com/stat.js" defer="defer" async="async"></script>
</head>
<body>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: '1673000116277273',
xfbml: true,
version: 'v2.5'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) { return; }
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<header class="page-title">
<div class="wrapper">
<div class="banner">
<div class="banner-item">
<h1><img src="img/layout/logo-babylonjs.svg" alt="BabylonJS"></h1>
</div>
<div class="banner-item"></div>
<div class="banner-item">
<h2><i>WebGL.</i> <i>Simple.</i> <i>Powerful.</i></h2>
<p>A complete JavaScript framework for building 3D games with HTML5, WebGL and Web Audio</p>
</div>
</div>
</div>
</header>
<div class="download-bar">
<div class="wrapper">
<a class="button-red" href="//playground.babylonjs.com" title="Try BabylonJS">Try</a>
<a class="button-green" href="/versionBuilder" title="Download">Download</a>
<a class="button-blue" href="https://github.com/BabylonJS/Babylon.js" title="GitHub">GitHub</a>
</div>
</div>
<nav class="navigation">
<div class="wrapper">
<a href="#featuresdemossection">Features</a>
<a href="#thirdpartydemossection">Third-party</a>
<a href="#specifications">Specifications</a>
<a href="https://github.com/BabylonJS/Babylon.js">GitHub</a>
<a href="http://doc.babylonjs.com">Documentation</a>
<a href="http://doc.babylonjs.com/tutorials">Tutorials</a>
<a href="http://www.html5gamedevs.com/forum/16-babylonjs/">Forum</a>
<a href="http://www.babylonjs.com/sandbox">Sandbox</a>
<a href="http://cyos.babylonjs.com">CYOS</a>
<a href="http://spector.babylonjs.com">Spector.js</a>
<a href="http://materialeditor.raananweber.com/">Material editor</a>
</div>
</nav>
<main>
<section id="maindemossection">
<div class="wrapper">
<h2>Demos</h2>
<div class="gallery">
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="MOPS CLI" class="gallery-item-link" href="http://www.instantuv.org/mops-cli/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="MOPS CLI" src="/Screenshots/dragon-pbr.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">MOPS CLI</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">InstantUV</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="JigSpace" class="gallery-item-link" href="https://jig.space"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="JigSpace" src="/Screenshots/jig.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">JigSpace</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">JigSpace Inc.</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Gerland" class="gallery-item-link" href="http://microsoft.teia-solution.com/gerland"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Gerland" src="/Screenshots/teiademo1.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Gerland</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">StereoGraph</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Teia Solution 2" class="gallery-item-link" href="http://microsoft.teia-solution.com/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Teia Solution 2" src="/Screenshots/teiademo2.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Teia Solution</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">StereoGraph</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Ramble 3d" class="gallery-item-link" href="http://www.studio-ramble3d.com/temps_reel.html#works"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Ramble 3d" src="/Screenshots/ramble3d.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Ramble 3d</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Studio-Ramble3d</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Maps 3d" class="gallery-item-link" href="https://maps3d.io/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Maps 3d" src="/Screenshots/maps3dio.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Maps 3d</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Thibault Durand</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Savage Kingdom" class="gallery-item-link" href="http://www.wildsavagekingdom.com/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Savage Kingdom by Nat Geo Wild" src="/Screenshots/savagekingdom.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Savage Kingdom</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">National Geographic</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Prosecution" class="gallery-item-link" href="/Scenes/prosecution/index.html"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Prosecution by ISART Digital game" src="/Screenshots/prosecution.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Prosecution</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">ISART Digital</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Ruins" class="gallery-item-link" href="./demos/ruins/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Ruins Babylon.js demo" src="/Screenshots/ruins.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Ruins</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Julien Moreau-Mathis</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Remix3D" class="gallery-item-link" href="http://www.remix3D.com"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Remix3d.com homepage" src="/Screenshots/remix3d.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Remix3D</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Microsoft</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="pConBox" class="gallery-item-link" href="http://www.easterngraphics.com/en/products/pconbox.html"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="pConBox" src="/Screenshots/pCon_box.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">pCon.box</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">EasternGraphics</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="MakeMarsHome" class="gallery-item-link" href="http://www.makemarshome.com/recruitment/assessments"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="pConBox" src="/Screenshots/mars.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">IMSF</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">National Geographic</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="HuffingtonPost" class="gallery-item-link" href="http://canvasgadget.com/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="Canvas Gadget" src="/Screenshots/Canvas_Gadget_Example.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Canvas Gadget</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Canvas Gadget</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="HuffingtonPost" class="gallery-item-link" href="http://www.huffingtonpost.com/entry/greece-refugee-rescue_us_5755708ce4b0c3752dce090f"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL 360 VR Video for Huffington Post" src="/Screenshots/huffingpost.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">360 Video</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Huffington Post</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="XboxDesignLab" class="gallery-item-link" href="https://xboxdesignlab.xbox.com/en-US/customize"
target="blank" itemprop="url">
<img class="gallery-item-vid" alt="WebGL scene for Xbox Design Lab"
src="/Screenshots/xboxdesignlab.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Xbox Design Lab</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Xbox.com</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="VendeeGlobe" class="gallery-item-link" href="http://visualiser.fr/Babylon/cloud/index.html"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for VendeeGlobe" src="/Screenshots/vendeeglobe.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Vendée Globe</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Samuel Girardin</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Sponza" class="gallery-item-link" href="http://leblon-delienne.com/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Astroboy" src="/Screenshots/astroboy.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Leblon-Delienne</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Keyveo</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Sponza" class="gallery-item-link" href="./Demos/Sponza/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Sponza" src="/Screenshots/Sponza.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">Sponza</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Babylon.js team</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="XboxAvatars" class="gallery-item-link" href="http://marketplace.xbox.com/AvatarMarketplace"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for XBOX AVATARS" src="/Screenshots/xboxavatars.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">XBOX AVATARS</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Xbox.com</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="DiStraction" class="gallery-item-link" href="./Demos/Distraction/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for DISTRACTION" src="/Screenshots/distraction.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">DISTRACTION</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Christophe Delpias</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Babylonyzer" class="gallery-item-link" href="http://synergy-development.fr/babylonyzer/"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for BABYLONYZER" src="/Screenshots/babylonyzer.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">BABYLONYZER</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Steve 'Stv' Duran & Kohai</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="ACTION BUILDER" class="gallery-item-link" href="./Demos/ActionBuilder" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for ACTION BUILDER" src="/Screenshots/absmall.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">ACTION BUILDER</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">6 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="MOLVWR" class="gallery-item-link" href="http://gleborgne.github.io/molvwr/#1GCN"
target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for MOLVWR" src="/Screenshots/molecule.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">MOLVWR</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Guillaume Leborgne</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="CZECH STARTUPS" class="gallery-item-link" href="http://startups-map.epk-tech.com/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for CZECH STARTUPS" src="/Screenshots/czech.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">CZECH STARTUPS</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">EPK Technologies</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="DOLBY EXPERIMENT" class="gallery-item-link" href="http://audioexperience.dolby.com/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for DOLBY EXPERIMENT" src="/Screenshots/dolby.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">DOLBY EXPERIMENT</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">DOLBY AUDIO</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="MANSION" class="gallery-item-link" href="./Demos/MANSION" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for MANSION" src="/Screenshots/Mansion400.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">MANSION</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">75 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="FLIGHT ARCADE" class="gallery-item-link" href="http://flightarcade.com" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for FLIGHT ARCADE" src="/Screenshots/flightarcade.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">FLIGHT ARCADE</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">Microsoft Edge</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="DINO HUNT" class="gallery-item-link" href="http://dinohuntcanada.history.ca/#!/dinos/tyrannosaurus-rex" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for DINO HUNT" src="/Screenshots/dino800.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">DINO HUNT</h3>
<div class="gallery-item-others">
<div class="gallery-item-author">by <span itemprop="author">History Channel</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="RETAIL" class="gallery-item-link" href="./Demos/Retail" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for RETAIL" src="/Screenshots/retail.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">RETAIL</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">3 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="V8 ENGINE" class="gallery-item-link" href="./Demos/V8" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for V8 ENGINE" src="/Screenshots/v8small.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">V8 ENGINE</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">15 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="ACP" class="gallery-item-link" href="http://race.assassinscreedpirates.com/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for ACP" src="/Screenshots/ACP.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">ACP</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">Assassin's Creed Pirates</div>
<div class="gallery-item-author">by <span itemprop="author">Ubisoft</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="HILLVALLEY" class="gallery-item-link" href="./Demos/HillValley" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for HILLVALLEY" src="/Screenshots/hill2.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">HILLVALLEY</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">70 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Camille JOLY & Michel ROUSSEAU</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="TRAIN" class="gallery-item-link" href="./Demos/Train" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for TRAIN" src="/Screenshots/train.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">TRAIN</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">70 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Romuald ROUHIER </span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="ROBOT" class="gallery-item-link" href="/Scenes/Robot/index.html" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for ROBOT" src="/Screenshots/robot.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">ROBOT</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">8.5 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="WORLDMONGER" class="gallery-item-link" href="/Scenes/Worldmonger/index.html" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for WORLDMONGER" src="/Screenshots/worldmonger.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">WORLDMONGER</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">8.5 MB</div>
<div class="gallery-item-author">by <span itemprop="author">David Catuhe</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="HEART" class="gallery-item-link" href="./Demos/Heart" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for HEART" src="/Screenshots/heart.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">HEART</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">14 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="ESPILIT" class="gallery-item-link" href="./Demos/Espilit" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for ESPILIT" src="/Screenshots/espilit.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">ESPILIT</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">50 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="WINDOWS CAFE" class="gallery-item-link" href="./Demos/WCafe" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for WINDOWS CAFE" src="/Screenshots/wcafe.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">WINDOWS CAFE</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">28 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="FLAT 2009" class="gallery-item-link" href="./Demos/Flat2009" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for FLAT 2009" src="/Screenshots/flat2009.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">FLAT 2009</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">
44 MB
<br>by Michel Rousseau
</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="THE CAR" class="gallery-item-link" href="./Demos/TheCar" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for THE CAR" src="/Screenshots/thecar.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">THE CAR</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">100 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="VIPER" class="gallery-item-link" href="./Demos/Viper" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for VIPER" src="/Screenshots/viper.jpg" itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">VIPER</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">18 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="SPACESHIP" class="gallery-item-link" href="./Demos/Spaceship" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for SPACESHIP" src="/Screenshots/spaceship.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">SPACESHIP</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">1 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="OMEGA CRUSHER" class="gallery-item-link" href="./Demos/SpaceDeK" target="blank" itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for OMEGA CRUSHER" src="/Screenshots/omegacrusher.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">OMEGA CRUSHER</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
<div class="gallery-item-author">by <span itemprop="author">Michel Rousseau</span></div>
</div>
</div>
</a>
</article>
</div>
</div>
</section>
<hr class="margin">
<section id="featuresdemossection">
<div class="wrapper">
<h2>Features <a class="upper-link" href="#maindemossection">⇪</a></h2>
<div class="gallery">
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Morph targets" class="gallery-item-link" href="./Demos/MorphTargets/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for self shadowing demo" src="./Screenshots/morphtargets.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">MORPH TARGETS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">12 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Highlights" class="gallery-item-link" href="./Demos/SelfShadowing/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for self shadowing demo" src="./Demos/SelfShadowing/selfshadowing.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">SELF SHADOWING</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">2 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Highlights" class="gallery-item-link" href="./Demos/Facets/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for facets demo" src="./Screenshots/Facets.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">FACET DATA</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">2 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Highlights" class="gallery-item-link" href="./Demos/SPSCollisions/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for sps collision demo" src="./Demos/SPSCollisions/spscollisions.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">SPS COLLISIONS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">2 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Highlights" class="gallery-item-link" href="./Demos/Highlights/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for highlights demo" src="./Demos/Highlights/screenshot.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">HIGHLIGHTS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Standard Rendering Pipeline" class="gallery-item-link" href="./Demos/StandardRenderingPipeline/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for standard rendering pipeline demo" src="./Demos/StandardRenderingPipeline/standard.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">STANDARD RENDERING PIPELINE</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="PBR" class="gallery-item-link" href="./Demos/HDRMap/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for cloth simulation demo" src="./Demos/HDRMap/hdrMap.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">HDR MAPS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">20 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="PBR" class="gallery-item-link" href="./Demos/Cloth/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for cloth simulation demo" src="./Demos/Cloth/cloth.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">CLOTH SIMULATION</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="PBR" class="gallery-item-link" href="./Demos/PBR/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for PBR demo" src="/Screenshots/pbr.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">PBR</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">15 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="Sponza Dynamic Shadows" class="gallery-item-link" href="./demos/SponzaDynamicShadows/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Sponza Dynamic Shadows demo" src="/Screenshots/SponzaDS.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">DYNAMIC SHADOWS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">30 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="REFRACTION" class="gallery-item-link" href="./Demos/refraction/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for refraction demo" src="/Screenshots/refraction.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">REFRACTION</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="FUR" class="gallery-item-link" href="./Demos/fur/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for fur demo" src="/Screenshots/Fur.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">FUR MATERIAL</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="PROCEDURAL CUBES" class="gallery-item-link" href="./Demos/planet/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for planets demo" src="/Screenshots/planets.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">PROCEDURAL CUBES</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">30 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="BOOM (SPS + SHADOWS)" class="gallery-item-link" href="./Demos/Boom/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for BOOM" src="/Screenshots/boom.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">BOOM (SPS + SHADOWS)</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="TUNNEL POSTPROCESS" class="gallery-item-link" href="./Demos/tunnel/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for tunnel postprocess" src="/Screenshots/tunnel.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">TUNNEL POSTPROCESS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="STARFIELD" class="gallery-item-link" href="./Demos/Starfield/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Instances 2" src="/Screenshots/starfield.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">STARFIELD</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="INSTANCES 2" class="gallery-item-link" href="./Demos/instances2/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Instances 2" src="/Screenshots/instances2.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">INSTANCES 2</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">10 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="SPS" class="gallery-item-link" href="./Demos/SPS/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Solid Particles System" src="/Screenshots/sps.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">SPS</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">8 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="DANCING CSG" class="gallery-item-link" href="./Demos/Dancing CSG/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Dancing CSG" src="/Screenshots/dancing csg.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">DANCING CSG</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">3 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="SIMPLIFICATION" class="gallery-item-link" href="./Demos/Simplification/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Simplification" src="/Screenshots/simplification.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">SIMPLIFICATION</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">15 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="FIRE MATERIAL" class="gallery-item-link" href="./Demos/FireMaterial/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Fire Material" src="/Screenshots/firematerial.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">FIRE MATERIAL</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">3 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="WATER MATERIAL" class="gallery-item-link" href="./Demos/WaterMaterial/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for Water Material" src="/Screenshots/watermaterial.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">WATER MATERIAL</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">1 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="WEB AUDIO ANALYSER" class="gallery-item-link" href="./Demos/AudioAnalyser/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for LOOK AT" src="/Screenshots/audioanalyser.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">WEB AUDIO ANALYSER</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">1 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="LOOK AT" class="gallery-item-link" href="./Demos/LookAt/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for LOOK AT" src="/Screenshots/lookat.jpg"
itemprop="image">
<div class="gallery-item-infos">
<h3 class="gallery-item-title" itemprop="name">LOOK AT</h3>
<div class="gallery-item-others">
<div class="gallery-item-size">1 MB</div>
</div>
</div>
</a>
</article>
<article class="gallery-item" itemscope="" itemtype="http://schema.org/CreativeWork">
<a title="POINT LIGHT SHADOW MAP" class="gallery-item-link" href="./Demos/PointLightShadowMap/" target="blank"
itemprop="url">
<img class="gallery-item-img" alt="WebGL scene for POINT LIGHT SHADOW MAP" src="/Screenshots/pointLightShadow.jpg"
itemprop="image">