-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
837 lines (826 loc) · 67.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This website is a portfolio showcasing my projects. My interests resolve around physical simulation and generative art. I mostly use WebGL and WebGPU for GPGPU in the browser." />
<title>Jérémie Piellard · Portfolio of WebGL and WebGPU projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicons/favicon-48x48.png" sizes="48x48">
<link rel="icon" type="image/png" href="favicons/favicon-60x60.png" sizes="60x60">
<link rel="icon" type="image/png" href="favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="favicons/favicon-180x180.png" sizes="180x180">
<link rel="icon" type="image/png" href="favicons/favicon-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="favicons/apple-touch-icon-120x120-precomposed.png" sizes="120x120">
<link rel="apple-touch-icon" href="favicons/apple-touch-icon-152x152-precomposed.png" sizes="152x152">
<link rel="stylesheet" type="text/css" href="css/page.css?v=2024-11-20T23%3A07%3A57.483Z">
</head>
<body>
<header>
<a class="logo logo-animate-empty" href="#" id="random-project-button" title="Random project" aria-label="Random project">
<svg class="logo-icon" xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
<g stroke-width="2">
<g fill="none">
<path d="M18,23 l 14,-7 14,7 v17 l -14,7 -14,-7z M18,23 l 14,7 14,-7 M32,30v17"></path>
</g>
<g stroke="none">
<circle cx="32" cy="23" r="2"></circle>
<circle cx="22.5" cy="30" r="2"></circle>
<circle cx="28" cy="40" r="2"></circle>
<circle cx="42" cy="30" r="2"></circle>
<circle cx="39.5" cy="35" r="2"></circle>
<circle cx="36.5" cy="40" r="2"></circle>
</g>
</g>
</svg>
</a>
</header>
<main>
<section class="projects">
<h1>Web</h1>
<div class="projects-grid">
<div class="projects-grid-cell">
<h2 class="card-title">Fur</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABDUlEQVR42mNQgAElJSVdXV1XV9ekpKTy8vKKiork5GQ3Nzc9PT1lZWW4MgY4S0NDw87OLjExsbm5ecaMGbNmzero6EhPT3d2dtbS0lJUVERokJeXB/INDAyCgoJqa2sXLly4adOmrVu3rlq1CqgnOjra1NQUaD9QGUIDkG9ubh4fH9/X17d+/fq9e/cePHhw9+7dc+fOzc7OtrGxUVFRwa6hv79/w4YNhDUAnWRoaBgcHFxfX79o0aLNmzdv37599erVXV1dMTExQCcB/Y3QAAGampoODg7AkGlra5s9ezbQ7O7u7szMTBcXF21tbRRPQwDQDH19fQ8Pj7S0tJqaGqDvgUHk6ekJDAzkYAUAQhZ3yLJZP/QAAAAASUVORK5CYII=" alt="Illustration for Fur in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/fur-threejs_512.webp, images/projects/fur-threejs_1024.webp 1.1x">
<img class="card-image" src="images/projects/fur-threejs_512.jpg" alt="Illustration for Fur" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is my take on real-time fur rendering. It is flexible and can adapt to any 3D model. A few properties are customizable, such as length, thickness, orientation and color patterns.</p>
<p>Technically, I implemented the traditional shells and fins technique, adapted for WebGL.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/fur-threejs/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Water (WebGPU)</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABdUlEQVR42jWQ6UsCURTF/V+CoC8tUhDSIlFCi2lgBUVhSQmW2eJSikWTNZGQZASZZEa5j/Nm1Ofcp5mYS8tf1RtBuB/uh/O795yjaLGkeQX1S6ix5Cvw8R2u/cXqzXiVPGHejxCDgCnUfNBkodUeBQWounQGgpeg60rpudES/xr5b+GlHGKEoC0bseXEE6l6QRpXHaB2AchVDFlx4AAe2Wom+oMSv+Hgp8eKLAtJu567MxWyTqgwMkMBoADnwH6jeLiErGs59z5h3BXHLqxoOY3yTTsQ35sWHralvId8+doAtSQe41ujYNak5odjM6qEfoLTqfkpZWqk+32yJ25SI/96kXfJXmSAhi6fSRFL7mg2Pdf3puqKjna/a3rT80pucYjbHOPd+tyjWcq7Ox9oDLrxTnyzKpjGM7r+pGEwvaUWnNq8bxnfb+BXqyQeQ+UcGpegaPclN0tOpchO8XwJ27X41FC8N0kxGwguAl5ZSi/SxE0W/gHtBd8dbhVoYAAAAABJRU5ErkJggg==" alt="Illustration for Water (WebGPU) in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/water-webgpu_512.webp, images/projects/water-webgpu_1024.webp 1.1x">
<img class="card-image" src="images/projects/water-webgpu_512.jpg" alt="Illustration for Water (WebGPU)" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a water simulation modeling water as thousands of small balls colliding with each other. You can interact with it by adding objects such as a cup or a helix. You can also dynamically change the domain constraints.</p>
<p>This project runs fully on GPU and can handle up to a million balls. It is implemented with the experimental WebGPU API.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/water-webgpu/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Non-circular gears</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABJUlEQVR42h2QzU4CYQxFx6/tbYvsXRuDGg0GQUT+FOJEHQRxcEbEAInG+P6P4Ie7LnruPW1yHPg0cI9kQfrN/suVH/YNe876KBgruoY65IT5nPg6SHIUKAJdkjnrVvwb/qW+gs2gKfQOGCjaKg2RC+Z64KRB3Ca5Z8TIldhafW2+dJ+7ZaYPqqnqKPYAlyxnxEkmOhXNxUqxQuwNVrotq15WLa/YzPQ5Yqa3ipZItEq2sA08Br/Dpjvv3Uaxb6vIVPzFdBJLTIeKq2gVgY3YdgfYAjZidFiGwMz1o+KFWRZ9gD7QA25YOiRJRlqwLcUmrE3iWuB4XAqUaoVaHNoiTZYuI2U8sSatIBkhJx0TaoEO9sJhoD5Lrlb+Aw2S+JwB4ZX0k+0PebYoeHLh6UwAAAAASUVORK5CYII=" alt="Illustration for Non-circular gears in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/non-circular-gears_512.png, images/projects/non-circular-gears_1024.png 1.1x">
<img class="card-image" src="images/projects/non-circular-gears_512.png" alt="Illustration for Non-circular gears" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Gears are not always round. Non-circular gears were first sketched by Leonardo da Vinci. Such gears are designed to convert rotational speed in a nonconstant manner. They also look cool.</p>
<p>This project is a non-circular gear system generator: the central gear has an unusual shape, and all the other gears are built to accomodate it.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/non-circular-gears/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Particles (WebGPU)</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABf0lEQVR42mOQ4WSW42JR5WHVF2C3EeXwk+aOV+LLVhPMVRPMUBFIVuZPUOQLl+P1lOSyEuYwFGBnUOFh0eJjMxVid5XgjlLky9MUqjMQaTMSazUUq9MTKdUSylYViFPg85fmdhTjtBDmYNDhZzMT4nCX5I5X5q/UE+kzl5hpLTnHWmqutdQMC8keE7EaXZEsVYFIkCXc9qKcDLr8bNYiHMGyvIVawr1mEvNspRfbSS+1k17lKLPaSXahnXSvqTjQnnhFPj8pbhdxLgage4COC5PjLdcRnmQuscBWeomt9DI7mbXOspvc5Fe7yE6zkqzSFU5QgmjgZAB6F+iBABmeAk2hbmOx2VaSC22kl9hJr3CUXeUit8wJqEGqWk8EqMFHCuQNBiVuFj1+NlcJriQl/mod4V4T8ZlWID/MAvoBiGykJlpI1umLpKjwAzXYiHAwKHAza/Kxgrwhw5OhKlClI9xhLNZjIt5hJNZiKNZhKt5jLtFsJJqtLugvw2MhzAEAVElQ3IWTRs4AAAAASUVORK5CYII=" alt="Illustration for Particles (WebGPU) in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/particles-webgpu_512.jpg, images/projects/particles-webgpu_1024.jpg 1.1x">
<img class="card-image" src="images/projects/particles-webgpu_512.jpg" alt="Illustration for Particles (WebGPU)" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a basic particles simulation running fully on GPU, using the new WebGPU API.</p>
<p>Particles evolve independently, following simple gravitational rules. There can be several attraction points at once. You can control one with your mouse by pressing the left mouse button.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/particles-webgpu/?page%3Acanvas%3Afullscreen=true&page%3Acanvas%3Asidepane=true&page%3Arange%3Aparticles-count-range-id=3">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Tessellation</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABc0lEQVR42gXB2VKCUAAAUD60p5pqpqYeGlusQCOXFM0Iw8QsrMyJlO0qyAAGBIhe1vqhzkF+QedvQmafzfi9BV+oqP+YsEz08bTm3lyB14DOqzZnLqY/su0MVvoD8jcjMrkSS3gglL1xw+coOKEiiYSg7cmsIYxnE3HKD3WJcsUS/MKQBFzG4AQqR556ZinXllL31Ruo4VAteSK5GPaNp+fvbtNlLla9o7iXQ9biIRS3Idhczg9sHbOMmmtWA/NqqeH2uPHN0A5BBWU8rOQSIpeSKOLLu2t+I+I3QrC/1HHXuv9xHlyHtIyWPqFMuu1eN8OLYorls0oxvWsg/nwPClspt5Pyx1AlPKtve++m/6rZPUXu6My9V67Gl1hWQFPiJqJpJDBykXyacWjCVQOpbWmsthgp1tt00Z2BO52teUQhKubTEhqT9RX7iKznaCzW0k8qHHWcr+5ceJGkgThlwKypiCVjUHBvz0P8LCljYbvuD+l/rET8pNpRv78AAAAASUVORK5CYII=" alt="Illustration for Tessellation in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/tessellation-webgl_512.webp, images/projects/tessellation-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/tessellation-webgl_512.jpg" alt="Illustration for Tessellation" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Tessellation is the process of partitioning space into a set of smaller polygons.</p>
<p>This WebGL project aims at creating colorful art by using iterative tessellation. Each scene is completely random and supports infinite zooming. You can explore anywhere you like by using the left mouse button.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/tessellation-webgl/?page%3Acanvas%3Afullscreen=true">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Stereogram</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAfklEQVR42lXQAQ7DIAwDwPx7sZ3+fDGEsqFTBamDgKAggoR0kAMQ0pgzAaLr4kpyFFpZqpKFl2MhViPqNJR6jmdx2+zltGMhlWMrvQ/i/qFfWOIeRbuRHieGay4U55bvL+43GCsHttxiV66kcgWQxp02spfd4C+uD+0t4n8wvwWUvQTvJurfAAAAAElFTkSuQmCC" alt="Illustration for Stereogram in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/stereogram-webgl_512.webp, images/projects/stereogram-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/stereogram-webgl_512.jpg" alt="Illustration for Stereogram" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Autostereograms (aka Magic Eye images) were very popular in the '90s. They look random, but actually contain a detailed 3D scene, which can only be seen by looking at the image a certain way. Such images work by using repeated patterns to trick the brain into seeing depth.</p>
<p>This project can generate such images. It runs on GPU and handles moving scenes.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/stereogram-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Reaction-diffusion</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABc0lEQVR42g3N7U6CUBgAYC6gkg5wznmPfbhaZZZp4kQhFIw5NTFb/QhdzdRKVExN7XPONruDLji35//DhR3pyEZBk9/P+ELXKDbAyhdNelipiqdXQrCEAoZv+2zt6IpXp9j683PRWynuSPKNGLlEUUdQulgfkfQT1qui6ojxqnhYQXs5PlTg5ZqQ6mFOucNqg2hNkqxjtYXTXWIutXC2jq02yb5QpY1PquJxaf0kvx7J81y2TQ2XGj0wPDA9arrEeCSZFrE69GLC7Jnf+mbqkMr3UsRGx+c8Vx5Dvg+5IcuNmTUE/YkodZJsUNNjxXd/+WejuNg4n/u1EcSbUrQmcNcTVh5C6ZUVppB9pYk2Dt9L4RpOPNCMS60RLAdzztLfLDWliQnhyi5UPLgcQHEKxifIY7LfEHcq6KCAwjY6dQT5WVJGWHuj2gfVZsBZt7TUBLsD+QkYCyb/wq4rspyPxVY2Yytb+mrA9oXqQqKP9TE1Ptg/JzxZnrnrIpAAAAAASUVORK5CYII=" alt="Illustration for Reaction-diffusion in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/reaction-diffusion-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/reaction-diffusion-webgl_512.jpg" alt="Illustration for Reaction-diffusion" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Reaction-diffusion is a system describing simple chemical reactions. This is a WebGL implementation of the Gray Scott model, running in real time on GPU.</p>
<p>The results exhibit very natural-looking patterns, similar to corals or animal coats. This project can also be used transform images with a nice effect.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/reaction-diffusion-webgl/?page%3Atabs%3Amap-tabs-id=uniform&page%3Aselect%3Apresets-fixed-select-id=0">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Jewelry</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAwUlEQVR42nVQW27DMAzr/Q8yrMXWocnWxbVjW69I8qnmFFmBAik/9CGKJKiDPeArzFSEsM41xz5F0Gzp6zu14vAs6CwzpBKHOZxLvBDcVNBNfbN7CLaFuhQpI4Rj/n3L4YR5FJp76r6gGTcOVj4lvWM8QvzAeWCMuvCuwJpC42uDs9UvqQOVbyrXnqAvErQZNJmcRsUfgakXYEyLwNrb9hLcyJdkPAlOjDemvF53+87bfmlxrcpRKAil7dr/3e5v/QNezSbFQxVPOQAAAABJRU5ErkJggg==" alt="Illustration for Jewelry in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/jewelry_512.webp, images/projects/jewelry_1024.webp 1.1x">
<img class="card-image" src="images/projects/jewelry_512.jpg" alt="Illustration for Jewelry" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a real-time rendering engine for jewelry and gemstones. It can render many gemstones simultaneously and supports precise customization of various optical properties.</p>
<p>The engine runs fully on GPU and uses ray-tracing, as well as post-processing techniques such as bloom and screen-space antialiasing.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/diamond-webgl/jewelry/?page%3Atabs%3Asupport-type-tabs-id=gold&page%3Arange%3Adispersion-range-id=0&page%3Acolor-picker%3Aminor-gem-color-colorpicker-id=%23E33737&page%3Acheckbox%3Adisplay-indicators-checkbox-id=false">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Diamond</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAr0lEQVR42m2QCQ6EIAxFvf99RgyWpQsFbzU/jhrj2PwQlvfb0mmMse2BTe/dHfLmbq1BrTku78z0O2AFpGosu9QyC5WacmVRpLiww4A0oHPhUpTVqzkVDpHCshJlVX0xiGjOXNnEelWPVD4hznNcY2IW9PXXUmsiZuZQqRJjWgJoKrmi+Ivh+rSpAaJIaU2oiL9378+WziGgtwFCRICqCOY1ztjGabhP7Sh0xvNpjC/Imydrry8djwAAAABJRU5ErkJggg==" alt="Illustration for Diamond in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/diamond-webgl_512.webp, images/projects/diamond-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/diamond-webgl_512.jpg" alt="Illustration for Diamond" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a real-time rendering engine for diamonds and gemstones. It allows precise control of the cut, and customization of various optical properties to simulate countless types of materials.</p>
<p>The engine runs fully on GPU and uses ray-tracing, as well as post-processing techniques such as bloom and screen-space antialiasing.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/diamond-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Flowers</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABQElEQVR42g3Ea1ajMBgAUPa/nDmOg9qCQiOQd0IeJF+kwAytetrpsboAvT9uFg9XWL9g+YL5GpdLnE7wcoJ4TuGcfk7/0/iRpk9YPmG9xsMlC8sxxlfo32J/DO7vYMZBpIATdGPCUyJL4oek38GfAN4hHTMPMigTWxsa47G0LbE1do88FhpKB8UAjyEiCGQMcopyzqwtHK89Qq6q+mqrywe9LczD85DTmMuQS3/PXMEckh77Ab9kva2M3hlc6Xojyhte/hLFnd7s3J9u+E38LTF3nS4b1XQ9VZbGTEenvFGC8waR+h6jW/q8lXVjNsTmxORUbZlAjDMudK9UzNT+VcLKzR4z22CMKGpFx7iUrVGVEU+GIU9ppAbYkLjbZ3K+iPHMwlvbLzsZa2WRGYjfM7swNWM2YTFj+4+GlcBKwvoNJy88QbbZbqUAAAAASUVORK5CYII=" alt="Illustration for Flowers in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/flowers-webgl_512.webp, images/projects/flowers-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/flowers-webgl_512.jpg" alt="Illustration for Flowers" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project paints a flower field in a naive style. Over time, each flower loses its petals to the wind and eventually dies, only to be replaced by a new one.</p>
<p>The stems are modelized as weightless ropes and animated with Verlet integration.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/flowers-webgl/?page%3Acanvas%3Afullscreen=true">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Ray marching</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABAklEQVR42m2QW0/CQBCF+Y9iQbQ8oVJsSy+J0BZsE2kbQEJNiRaiFnvZ7u6s/9E1RHigyTxMJuc7Z2YaFzI7VFNhgspEk/UdpnmgufTepqJJBRWaMhxljWN3UD9M2WTxE76yYE2tkEgOuTHgUj0DuMeVxu5s5sxZlLBdCskHXsbVyMe9MW0PTyH/gALXBihPEESwS2le4H2GNtvSXSIe0tHrASpPib8myeef+ivN4/fMXRSSgzs6PQNkaGv0dkyssHqJ0du23CTZPPp+fC56I9wecqDmaBANMphgK6hmq3K2Kiw/H9iIDwW17kt8q5YKXZP2baJ7WPeQZKOuiVvcXjkBv3z0xFSxbp0nAAAAAElFTkSuQmCC" alt="Illustration for Ray marching in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/ray-marching-webgl_512.webp, images/projects/ray-marching-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/ray-marching-webgl_512.jpg" alt="Illustration for Ray marching" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a simple WebGL experiment that uses basic ray marching to visualize various types 3D or 4D noise fields.</p>
<p>My main goal was to be explore value, gradient and simplex noises in three dimensions. The shader performance could probably be improved.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/ray-marching-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Packing</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABfUlEQVR42gXBiU6CAAAAUH6vbB0eRRbIQMQgD0Q8OMRwoSmpmaaRiDkRllJqZpbZ1lb/1XvAh0pMB8zDqpT/1mLLLuvUqmPescM/D/6/svtX8PwkoO8wucLYGZFzYgrwKZ/OdcJYcMUvNbuo5ydK205NB2ebFrJRwE/xcJmEHSpi4lw/nHuMCcA65Xurn9g20VmwtbnQmqRMMzLTQq+14HMJeSpAFof2I/G7kHhDiI0oA6ypo3fJN22C9iAwtHDLxCc6Nmmgpop3r4P3KtqVsS5z3iRZlWSvoiTwRZwsWXAm+5yKz6kfOw1oXEWGRVQrBetV9LoRuKlArRxym8bUJFZMwsAmAr2y8JiDLQG2ecQW0KGA98RgW0bVClRoglLLK1c9l4q7KHkV3gOs0/CMwyye7Gdog2EMOt5PUD021BGRqxKYbrtJY/dM26FVFy/tSdkDYJVHXnL4SGB07kJLXWq00IvGDZpo84FC+YjS9/0jl1/fCinbCWY/Q3n/AVoyxKVe0MLDAAAAAElFTkSuQmCC" alt="Illustration for Packing in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/packing-webgl_512.webp, images/projects/packing-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/packing-webgl_512.png" alt="Illustration for Packing" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is the implementation of a simple packing algorithm running on CPU. Each new item is given a random position, and then grows as big as possible without intersecting the others.</p>
<p>You can zoom anywhere you want by using the left mouse button.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/packing-webgl/?page%3Acanvas%3Afullscreen=true">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Rorschach</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAABEUlEQVR42mP48GomHL17Mf3pjd6zO8o2z0hcMzV+/4ai25c73z6bhqyGAZnz6uHkm8ebdsxKnV7k3ZvrsXRi/OmDdc8fTMKuAWj8oxt9J7dWLWuNa4l1r4xwnlAdtmt9yf3rvUApLBrePJt253LP/vU189qymtKjKxLDuqriNiwrvn6h8w2Sq+AaZoA0XO0/uKN92azGCS3VHXWlU3uLt6ytvn6h6/XTqVhsePti+uO7U8+fmrJjy7Sli6bMn9O7enn7kf0d9270v32OxYaZ71/NeP1sxoPbc86fWbhv76Jd2+ccOTj1xuVJzx9Nff9yBvZQev9q5utn8x/dW3bt8srL55fcujrn6YPp717MQA4lAIyTGpeGEDouAAAAAElFTkSuQmCC" alt="Illustration for Rorschach in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/rorschach-webl_512.webp, images/projects/rorschach-webl_1024.webp 1.1x">
<img class="card-image" src="images/projects/rorschach-webl_512.png" alt="Illustration for Rorschach" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Rorschach is the most fascinating character of the Watchmen comics, hiding behind an ever-changing mask to become a moral judge instead of acknowledging his own issues with violence.</p>
<p>This is my attempt at recreating these patterns on GPU using WebGL, by computing a 3D multiscale gradient noise and thresholding it.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/rorschach-webgl/?page%3Acanvas%3Afullscreen=true">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Strange Attractors</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAABBklEQVR42j2Q2a6CQBBE+f8/AoKsEUKAsCQaTNj3fVEQeLpl8DovMN11qquH2Lbt9XrN8/x8PvEzjmNZlmEYxnHcNA0q2//Z9/04DgKfZVmmaRqGoes6qIMgcF338XgkSVLXddu2qKMLGcQfADYoFUUBY0ht29Y0Tdd1y7Lu9zsqvu/neQ5TzCHe73ff9zBDwzRNVVUlSeI4jmVZnuev1ytgYGmafgHYZ1l2u93QQFsUxcvlQlEUSZIMw8iyjIEIiWxY8gOAw90wjFMtCAJ0NE0DUxTl9EZgvAp2+AJRFDmOgzBgTgBqeGMsFjulOOu6fiNVVYW1wMASauTBDpjpeR6e6JT+gD+fTk84K1fjxAAAAABJRU5ErkJggg==" alt="Illustration for Strange Attractors in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/strange-attractors_512.webp, images/projects/strange-attractors_1024.webp 1.1x">
<img class="card-image" src="images/projects/strange-attractors_512.png" alt="Illustration for Strange Attractors" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a performant 2D strange attractors plotter. It allows you to explore different types of attractors and play with various parameters.</p>
<p>Strange attractors are complex mathematical figures representing the path traced by a point iteratively moved following strict rules. Strange attractors often exhibit beautiful fractal patterns.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/strange-attractors-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Picasso - Fourier</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAAA2UlEQVR42nWPXUvDQBBFd3ZnP2Z3m2QTsxuhVYjSFtoqLYiW+lIQRBDBp4JPgv7/32BoXxSTy30a7hk4jP0KMIYAI5SNpivr5uRaTRVKDZz9z2mdo2ytv8+rp1Dvs/LGuDQEcAaOi0tNj/nZIY4/0+Q9xA35KKQE6AG6ayVwRf41pK908R0nb0W91LbgQrABIAq8JfeSVR9lcwhp74tWGct53/wo0D27VnpLo2cfut6RH0tlegWODswA1AJnyjyQ39msM25QqSHgxFjg56gW2q7JT7UtUeJf4x8grQ8te26fMQAAAABJRU5ErkJggg==" alt="Illustration for Picasso - Fourier in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/picasso-fourier_512.webp, images/projects/picasso-fourier_1024.webp 1.1x">
<img class="card-image" src="images/projects/picasso-fourier_512.png" alt="Illustration for Picasso - Fourier" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is at the intersection between art and mathematics. It uses the power of Fourier Transform to decompose the apparent simplicity of Picasso's single line drawings.</p>
<p>You can dynamically change the complexity of the sketches and visualize how Fourier manages to build a complex signal using only sines and cosines.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/picasso-fourier/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Chaos Game</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABfklEQVR42g3LQUvCYBgA4Pf9vs0NWyZqkgqfYJlaOQ3XZbOiQFAZYgaCEnUom+nBk6C5eSm0i0mXSBgMOgRZ/sd67g9sg0+G4AmEa8jayCwSfqW+hbC2WBNefdQKkzbDGsOTMMhB2PED7MGWCqwKiS7Kz5j5oMkvLvIrbvxuiF8R7iNJnzPYlbGaAJXBfghAgVgJDgxUX7DokPKSy69cuyt3YBVwr3ZdyzznlMlLEdsqlg5AiQFokK7j8QhrNrn7oa1v/uJTzDmeiBPxfObE7wv+p0XtOzKqYf0YNfk/YL6BVYs8LOjQ4fvv4vV8/XS2GZ/FN+en0vu16PT5xZBaD6RRRS2PcIR6hbQ61DK5yVgwH6X7oV83Wc7MsaHue7yXxqZgTriORSstougIKXKl0kGZm1+63urup4a3dxNq3ibPbs9SN81Qo+etP7kv31zlOacOaOqKQJQYCTpN83ZWsBVppvlH51GjkNULevbciGqjgDKTDm0hbfOJKWUG+QP/eFz2rbdtdwAAAABJRU5ErkJggg==" alt="Illustration for Chaos Game in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/chaos-game_512.jpg, images/projects/chaos-game_1024.jpg 1.1x">
<img class="card-image" src="images/projects/chaos-game_512.png" alt="Illustration for Chaos Game" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is an implementation of the Chaos Game, running on CPU and rendered with WebGL.</p>
<p>A single point is moved and drawn millions of times on the canvas according to a few very simple rules, and from the randomness emerge beautiful fractals. Discover hundreds of gorgeous fractals by adjusting the parameters offered by the simulation. A few presets highlight the ones I found but there are many more to explore.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/chaos-game-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Game of Life</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAAA4UlEQVR42j2QSQ6DMAxFcwSkLkAUFMo8BBKgDIIV979UH0bqX1iJ8wc7KgxD3/ejKKrrehzHr8A51zRNlmVlWbZtS4X2EiitNWwqDATLsqzrOs9z3/d0uq4bhoFDHMf4BkFwC7hQsTHGoJkFhFhrp2kikENRFFqgyP0I8jxHgxneTgB727bjOMgkhzSeFCNWVQUVj1zAMkTxhjH2+74jI5Npz/NUvKHBGB4aAtEbAf1nB5QEIruuSyVJkqYpVEI4IHi2/38UTWKf5p3geR7rsw1KtqdizNAMgD3XtwAZGmvtD43KPUiYR3ApAAAAAElFTkSuQmCC" alt="Illustration for Game of Life in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/game-of-life-webgl_512.webp, images/projects/game-of-life-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/game-of-life-webgl_512.png" alt="Illustration for Game of Life" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a simple simulation of Conway's Game of Life, running on GPU.</p>
<p>The rules can be changed to see how the world evolves.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/game-of-life-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Panoramas</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABiklEQVR42i2Q20vCYADF9y9GL2UEQUSkSXSFLkZlEVQSSQZ2sQtWJClhF81MSmlNnVOba/M21+bcim9W1mzfWyOC83h+h3MOwgHIK1pVUXkZlCpsjiQI/JFI41k6T5aFdLkWL8hYsY5zaq4Gi68QeQFQUH54uU7l89Hozdnprudg3XfiCgXO0FgET6B4Opt4FpJsIytCRoaIHi8qKsuLD2jMfbCxvDBknexdsg4716ze3dVb3w52F0w85ZPsZ7qqUdIfUAPfxXIlHLq022ZG+g2m7pZBY8fUULfN0udes9z4j+OZ5xTX0IFcTUMERZMUtcxykdCVY2Vu1Nhp7Go19bQP9LZNmA32+WG/9wh7YjL8V1bUqH+g3hRECcdQz96mbXZ8dsw8PWa2jPbNT/Rv2ReD14EU80KKak6C9F8lKL9rr+CDLRWx+8iF5/Bkb9O97dh3rh67HNfnXn00zQNa+qFlWNBf4gGU3qHy2QRAETiuQJEkkUw9xhLRMIHeMRRZqcqVN1W36iq9wV80LiWEojeMCAAAAABJRU5ErkJggg==" alt="Illustration for Panoramas in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/panoramas_512.webp, images/projects/panoramas_1024.webp 1.1x">
<img class="card-image" src="images/projects/panoramas_512.jpg" alt="Illustration for Panoramas" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This small project is a simple tool for visualizing, editing and converting panoramas.</p>
<p>It supports skysphere, skybox and tiny planet formats, and can convert from one to another.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/panoramas-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Pool</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAABj0lEQVR42mPg4OTn4RPjF5IVElMWldKSlDeSVbWS17CXVbMWkzXgF1Hk4hVj5+BnZeNiZmZjZGJm4BeUFpfWklO1UNJ2UjX00rIM1XdMMHRL03WMVzHxk1SxFJLQ4BWU4+QRY+PgZ2blYBARU1LWstO3jTTzyrIKKrWLbnBO7nJJ67eLazH0zlEy9hNXNBcQ1+QRlAfqYWXnZRARV9Y08rINKPZM6/MtnO1fvjiwZmVAzUrPornWsU2aDnGS6vYCEto8ggqcPOIgDYLCslrGXs6RtcGliyKaN4a3bw1r3xbatsW/dqVLziTjwEIlUz9RBWNeYUUObhEWVi4GXj5RFR0Hh5DykPLF0R3bo7p3R3TvCu/eGdq22a9mqXNmr5F/jqKxh5C0Bge3ENDfDBycfDJKhhaeGf4Fs6Lat0b37Ynq2xvVD0R7Inu2BzeudMns1nOPl1Ax5OQVYmJmYWBl5RCVVDWwj/TKnBDZtjl2wv6YSQdiJx+Mm3IwfsrB6L4dfuWzTQMypTRMOHkFmZiYAXANZJ2meZQbAAAAAElFTkSuQmCC" alt="Illustration for Pool in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/pool-webgl_512.webp, images/projects/pool-webgl_1024.webp 1.1x">
<img class="card-image" src="images/projects/pool-webgl_512.png" alt="Illustration for Pool" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a WebGL water simulation running entirely on your GPU.
You can interact with the water, and visualize it both in 2D and 3D.</p>
<p>The water surface is modeled as a grid of springs.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/pool-webgl/?page%3Acanvas%3Afullscreen=true&page%3Acanvas%3Asidepane=true">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Navier-Stokes</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAAsTAAALEwEAmpwYAAABXUlEQVR42g3CvUvUcRgA8Of9+3yf38vdzys9z+44qBwMB3GRloiGBiXDl4igKdoCCdycGjrfUJLKorFaggYJWooIhMz+q/zwAQJQAANwwEAsEWukhugyUY9oIDhQ7Bv2FMcFxxihR9hnHDJeZ7pBPMe8IHxL+a7yPZXVxGuZVgpczHgn0U0lWBFeS7zu8ijJE9UNs61sLws9KNKb7O/C39f6tqGDml5k3VSHbdPtnEZF2g8/dv8UflL5j3Y+rcu/RfOvbJ838eeS/GrpSS4/Sgd2zXbc9yJeRXzI8bnIX1v+vYnf9dhZdM9j4qxdnzb2s/Jv1vlCQ3gg+lDTY/OnyZ8lf559s0pbVYyiObLucRp/XVSHpe157HB3hNPQZx6yTLPMss6JzpvOuyx4um3lIrfvc71svmS6JLGME6twFYRQCTNRSVRdZC6FWiIdtknyKbQpkosDytewMwNX/gPRaTVx0quTxgAAAABJRU5ErkJggg==" alt="Illustration for Navier-Stokes in low resolution" />
<picture class="card-background card-image">
<img class="card-image" src="images/projects/navier-stokes.jpg" alt="Illustration for Navier-Stokes" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a WebGL incompressible fluid simulation running entirely on your GPU.
You can interact with the fluid with the left mouse button and visualize both the velocity and the pressure of the fluid.</p>
<p>This is an implementation of the Stable Fluid described by J. Stam.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/navier-stokes-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Waterfall</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAAsTAAALEwEAmpwYAAABkUlEQVR42mPQDV2vE7BIx2+ONhD5z9MLWmgRvdg9balv1mLX5HlmoTN1fGdqek3TcOtRsa1UNEtnUPNeruY+S9V1sorLZBW36Tp+s+xj54blz08omxuSM9smcoa293RV10nKDm0KFsWyhokMco7z5Owmy9p0y1p1Ktj16PtM8kicmlA8Kb28Lzy73zZ8kqbHFAW7XlmLBmnDPAntWAZxixkS5v0SJi0SRg3yVs3Gvt1+yd3xeU2xWVXecXWm/p2qTn0yFm0ShhXiOhmiatEMwsaTRY26RfQbxPRr5C3rzfxafRMbw1KKfaOzrf2LtV2bFGw7JI0bRLULRTRShJQjGIQNekQM2oV160X1a+WtGox9Gl2jKryiMh0DU408CtUcGmUtW8UNaoQ1coRU4gQUghiEdFuF9VqAGsQMGuStm3U96i0DCu38kyy9U/TdS1XsW2TMW8X0q4XVswSVIvllvRgEtRuEdZuEdRvEjJrkbdo0Xev13bKNXKMNXZN03SpVHNqkzdvE9KqE1TMFFEL5pFwAuEZ2l6GcepgAAAAASUVORK5CYII=" alt="Illustration for Waterfall in low resolution" />
<picture class="card-background card-image">
<img class="card-image" src="images/projects/waterfall.jpg" alt="Illustration for Waterfall" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Waterfall' is a simple waterfall simulation, based on a particle system.
The particles bounce off obstacles, creating water streams and droplets.</p>
<p>The whole simulation runs on GPU.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/waterfall-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Paint</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAABYElEQVR42jXQTWvbMBgAYP/AXXYogx5SymCnZaG3FbLDWAkdbe34K7Ly6pUt2VIk2Yljaq/tLqP0I/QwCoX+n8JgP+C5PJ4TZ3V53pan1/rbnfuys6Nb+X7I3tXRnk7HCk6MiGpFag1OcVOi58SFE0Ej/avVbLeZPneTv+vD2/LDAPsNHWv4ofPISGorZit0FfNM4ZsidCIaVsGu+/l6NX3tPz/Z0W8+apaTCmYS0yoHLcDIpavofyCT3iT33fzl1/eX7fihPLikH3X2NYeAM8iRSw4qJ0amnhW+k8FaJ31N/nTJY3typyY9/aTiIySngAy4BBTIWIGp4pHnpN+oYGvjYUNvttm1O9/gVMTHWTRbUEpzTQtDUBHIAbICY8/KeaPCziVDS/uW1SuSQ5ik0XyxjKFacJdyF7NVDCUBRCTev7V469LLNW0brBQnWASZ8KkKwUTMhmDnSxOCJkwwDm+Zi+xOnS2j3QAAAABJRU5ErkJggg==" alt="Illustration for Paint in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/paint_512.webp, images/projects/paint_1024.webp 1.1x">
<img class="card-image" src="images/projects/paint_512.png" alt="Illustration for Paint" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Paint' is a dynamic painting simulation.
The moving paint strokes highlight the geometry, and you can interact with them to shape the painting.</p>
<p>The whole simulation runs on GPU.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/paint-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="projects">
<h1>Cats</h1>
<div class="projects-grid">
<div class="projects-grid-cell">
<h2 class="card-title">Reaction-diffusion</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABJUlEQVR42m2QvauCYBTG+08lEBtscxEcCkNwS2rLj7YQwSUSCxXMaBBsCCVcIrxRRiQhhaYuHYrLpbjP8h5ezu+c5zm16qXH45GmaRzHURT9vBSG4Wq1Wq/XUN9ut+pXtfeT5/n5fA6CwLZtXdfH47GiKLIsz2YzIGHWP8DxeHQch+f5TqdDURRJku12ezgcep53vV6/gaIoDofDdDqFbhRFEQSp1+vNZrPb7S4Wi8vl8g2UZXk6nQzDYBim0WhgGIbjOEEQHMfN53NwCw0fAChJEtd1RVGkabrVasEqlmUFQQBgv99nWfZm/gA4xXa7NU0TfPd6vX6/PxgMILdlWZvNBlxBzg8ALgu/vu9PJhNJkiD9aDRSVVXTtOVyudvt7vd7VVVPrpU1NI11gPkAAAAASUVORK5CYII=" alt="Illustration for Reaction-diffusion in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/image-stylization-reaction-diffusion_1024.png 1.1x">
<img class="card-image" src="images/projects/image-stylization-reaction-diffusion_512.png" alt="Illustration for Reaction-diffusion" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>Reaction-diffusion is a system describing simple chemical reactions. This is a WebGL implementation of the Gray Scott model, running in real time on GPU.</p>
<p>The results exhibit very natural-looking patterns, similar to corals or animal coats. This project can be used transform images, creating a nice effect.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/reaction-diffusion-webgl/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Threading</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABDklEQVR42m2QUYuCUBCF/ekLYYmFUIuGiOSKkqaghpkgQmkkBmpqV/05HXTZfWke7h3unW/OmaEIIW3bFkVxvV5Pp5PrusfjcUpM07QsKwzDLMuapiFjUF3XvV4vAJfLBUW6rv+MIcuyJEmapgVB8AegmOr7HkBZlgBs2xZFkeM4lmUZhlmtVmAgeL/f/4FhGJBVVQUAHtbr9Ww2+xpjPp8LggDZD8Dz+UyS5HA4bDYb1NE0vVgslsslBD8DdV3fbjfP82D9ewye57fb7W63wyO+0BHOf4fGhQZ5nkdRhLWoqqooCuZGgh04jhPH8ePxmESoaVnTZtM0PZ/PGH2/3xuGgZFwwqfv+/iCCCHkDXiCFBm79+MCAAAAAElFTkSuQmCC" alt="Illustration for Threading in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/image-stylization-threading_512.png, images/projects/image-stylization-threading_1024.webp 1.1x">
<img class="card-image" src="images/projects/image-stylization-threading_512.png" alt="Illustration for Threading" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This tool generates string art from any picture of your choice. A single-color thread is repeatedly ran from border to border in a straight line. The stacked segments progressively recreate the original image.</p>
<p>This process was popularized by Petros Vrellis.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/image-stylization-threading/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Dithering</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA4ElEQVR42m2QW8tEUBiF5///FtwocUEpp5TU1wgZpxCRL3K2b2a1NU1pnpu9t3rWer0PQjnPc13XcRz/P7RtW1VVXdfDMGzbRj48ruM4jmmamqaJ4zgIAs/z/ihRFMFE1g8B8Wma2rYty7IkSaIo4uI4TlmWy7LcBYyE6jAMFUXhOI5hGJZleZ7XNA0pKL8LAA0YQFVVniIIAnoMw0iS5Lcwz3NRFK7rIlXXddM0LcvCM8sylGPmu4BVYDl5nvu+/6Tg1zEkhK7rEHc5X+HabN/36HlREgr2hi/I2vedEPIGDI5ZMUbmj4UAAAAASUVORK5CYII=" alt="Illustration for Dithering in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/dithering_512.png, images/projects/dithering_1024.png 1.1x">
<img class="card-image" src="images/projects/dithering_512.png" alt="Illustration for Dithering" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a simple tool to turn images into a series of lines of varying lengths.</p>
<p>The result can be exported in the SVG format.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/image-stylization-sines/?page%3Atabs%3Apattern-tabs-id=1&page%3Arange%3Alines-count-range-id=70&page%3Arange%3Amax-frequency-range-id=0.18&page%3Atabs%3Alines-type-tabs-id=1&page%3Arange%3Amax-amplitude-range-id=0.5">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Sine waves</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAA2UlEQVR42l2Q2WqEQBRE5///QgXFiAruEgT3XeM68zs56eBMJudBbLqqbte9nRf7vq/r+iWY53kYhrZt+77neBzHXYDs9hBw2LYNUVmWaZomSfIpyPN8HEcMj4uXgfiqqsIwtCzrQ2CaZhRFTdOQ9TLcL5ZlybIMtaIokiTJsqyqquM4zCTrKftvsG0bnaZpuq4bhuF5XlEUb4a/HZgex7Hrur7vB0HA86hR1zVZ1H3rADRjOVwzh958aUw8KdM0sUNCfwxYn+PwEPa7UOi6DjWb4J8sbs/z/AY76i3bAXFLHgAAAABJRU5ErkJggg==" alt="Illustration for Sine waves in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/image-stylization-sines_512.png, images/projects/image-stylization-sines_1024.webp 1.1x">
<img class="card-image" src="images/projects/image-stylization-sines_512.png" alt="Illustration for Sine waves" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a simple tool to turn images into a series of sine waves of varying frequency and amplitude.</p>
<p>The result can be exported in the SVG format.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/image-stylization-sines/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="projects">
<h1>Tools</h1>
<div class="projects-grid">
<div class="projects-grid-cell">
<h2 class="card-title">LDAP filter analyzer</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAzklEQVR42l1QawtEQBT1//8WiYxniiQjIYnxygz2y552d7DOh9s87nncq7wkjuMQQqzrOs/z+ME0TcuycM7xdbYp5wndaGqapiiKLMvSNEWtqmoYBnw9CdCAWF3XSZJ4nmdZlmmahJA4jiEB29PkR9i2jTFGKfV93zAMTdNUVdV1PQiCsiwRct/3i/BN33UdMoRh6Lqu4zi2baNGUQQChoHik4CsiJTnOZUAH/O0bYu0fw4A7giKoZlE3/fwRIX8fVHX0ODAV0hwCTze1/oGciRlEFMe7fYAAAAASUVORK5CYII=" alt="Illustration for LDAP filter analyzer in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/ldap-filter-analyzer_512.webp, images/projects/ldap-filter-analyzer_1024.webp 1.1x">
<img class="card-image" src="images/projects/ldap-filter-analyzer_512.png" alt="Illustration for LDAP filter analyzer" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This project is a simple tool for easily visualizing large LDAP filters. Hovering parts of the analyzed result highlights where they were extracted from.</p>
<p>The input string is analyzed by a scannerless parser: it performs lexing and parsing at once. It uses a factory pattern for building nodes in memory as it scans the input.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/ldap-filter-analyzer/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">i18n</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAuklEQVR42m2QywqEMAxF/f+/EqGC4k7FB3WhC4XBF76qbubQguPMmFWam5PcxjpvcRzHrkMpZRIq53dYV4a8bds0TcMwdF3X9/04jsuyAN8x65q9ritNdV0XRZFlWZqmUkqeYDAPwDzPTdPkeR4EgRDCcRzP85IkoYh0LfkAmEFjsO/7dNu27bpuHMcseQawhPWqqvATRVEYhowvy7JtW6RfwHwaAcd0vHTA86SI9HAls0fp4Fwm+b/sGw6SaWyQOPC4AAAAAElFTkSuQmCC" alt="Illustration for i18n in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/i18n_512.webp, images/projects/i18n_1024.webp 1.1x">
<img class="card-image" src="images/projects/i18n_512.png" alt="Illustration for i18n" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a silly tool to translate to and from numeronyms such as "i18n" (which stands for "internationalization"). The reverse translation illustrates how confusing such abbreviations can be.</p>
<p>Only keep the first and last letters, and add the count of inner letters. Makes communication easier. M3s c11n e4r.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/i18n/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">F5 persistence cookie</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAtklEQVR42m2QyQqDMBCGff9HUzwoLghGQZSquGvi0ks/2kPnkLnln/zbOG8xz/MYY9Z1HcdxmqZ936/rApR/HPlgvSxL0zRKqbIsu66Dc9+3nYCS1rrv+zzPgyAIw7AoimEYzvOUJn8CStu2IR/Hsed5rutGUVTXNaA0cWSeeZ6rqoLg+z4cfAhGGVZ2wq8AkdI0TZIkyzL4qNgJ+B7HgR5dX99p25ZzAdoj0YwFFbUYrgwoS38ANFFqDjrS3jsAAAAASUVORK5CYII=" alt="Illustration for F5 persistence cookie in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/f5-persistence-cookie_512.png, images/projects/f5-persistence-cookie_1024.png 1.1x">
<img class="card-image" src="images/projects/f5-persistence-cookie_512.png" alt="Illustration for F5 persistence cookie" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is a simple tool to decode and craft F5 BIG-IP persistence cookies. They contain the local IP and port of the machine.</p>
<p>The structure of these cookies is explained <a href='https://my.f5.com/manage/s/article/K6917'>here</a>.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/f5-persistence-cookie/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">TOTP generator</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7CAAAOwgEVKEqAAAAA0ElEQVR42l2Q2QqDMBBF8/8fVqFxRbBBRXHBWjfc4taXXhJia89LZoY7kztD3oLjONZ1HYahaZqqql4KpCguywKBVBL57Ps+TVNZllEUMcYeijAMi6IYxxGCS8O2bX3fJ0niui6l9K5wHCeO467rIPg24DvOOQz4vm+apqZpNwECwzCCIKjrGoalKyLHw2iWZZ7nWZal6zoVILBtG66w1bkGOf3keY4f4JspEKOSpmnbtpcGLDTPMw7yFJQKGaOOe/zvgBwz0MZ/kCnqmHie9QPnbl9qJpsqNgAAAABJRU5ErkJggg==" alt="Illustration for TOTP generator in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/totp-generator_512.webp, images/projects/totp-generator_1024.webp 1.1x">
<img class="card-image" src="images/projects/totp-generator_512.png" alt="Illustration for TOTP generator" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>This is an online tool to generate TOTP codes like an app such as Google Authenticator would do.</p>
<p>You can bookmark this page to remember the secret. Keep in mind that it is safer to use a dedicated app.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://piellardj.github.io/totp-generator/">
<span class="card-link-label">See live</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="projects">
<h1>OpenGL / other</h1>
<div class="projects-grid">
<div class="projects-grid-cell">
<h2 class="card-title">Voxelizer</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAABQElEQVR42iXEi1aCMAAAUP7eylJTUTy+UQlBYbxljAFjDlCQ0h+K7Jx7Lgdw3dAb4U0LyyPMVZcoVqiage6GVkBOEQuSPCA5euLMuDIaUamhQvVSCcC1DBYbeSFKoqTsdcv0Qz+mKGVhynDKOIdcbHIx40yDiaQ7863MT2a9wbDb6w/40WItHgzjhDGmaXSmDe50Zg2HEAChpB2nq2WfH7Tf262XVrMwFVRdhZEfsyjJEsJiDhUJyhPIsBt7mnvcHcTZSvgcdl7brY/O22wpAFvBqZfmiBaI5oiLSxSXQXSFuPAgNd1I1ZzNejfmhc540pX2cx8faO5kVy+7nhocrd0nh9Y2ra20AiFTDHe5lUfbr5HprAg7FJV5qazij82xHzO7N4zsDvIHKB7a+aYEyQY4U8OeBtEmu6rlt17W/8Av8ggPmm/vKicAAAAASUVORK5CYII=" alt="Illustration for Voxelizer in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/voxelizer_512.webp, images/projects/voxelizer_1024.webp 1.1x">
<img class="card-image" src="images/projects/voxelizer_512.png" alt="Illustration for Voxelizer" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Voxelizer' is a project that efficiently turns any 3D mesh into a grid of voxels.
The voxels are stored as a compact bit array.</p>
<p>The whole processing runs fully on GPU.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://github.com/piellardj/voxelizer-gpu/">
<span class="card-link-label">Github</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Parallax mapping</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABdUlEQVR42i3OXS/DUBjA8X6bSV/OOV3ZvGx0+nLW063W1AxhiBtfhEQiQtyMECwqQTfV2brN5p1YIrhx49M4Ecn/6nmeX/IwLRO1CWoZMDRQKyN2LalrRemwlga+xldVrqJwnsJ6CldV+SuNZzwMfLrDoKKDCoYBQc2MSKsTGOiCr/K+ylF5pQvXGIRpwJRV/lTl3HHuOMUeplhXE6qm2JiQmpbUILCm8YHG13ShTq8NSB9hXAOd6kJ5nN0fjZQSkZLMHqWRZ8dCJ962pBCDusY3sNBKw7YBbwhizvLDFTt2QcQThdtLRraTfVsaPMjF/fxwx451CbrBoGOArgFvCaIxblEJ5uSwkKjlBlxd2JbZNQVsZePn+ZG7ycEXS3oi6NH874GC3TnlckG9XVLvi6nAGSxhtKqhDQqmkq/TiS8n9m5F37Liq4meqaFgx0l6M/LDMu6tkM6icmTH1w1pMzd0OSt/zo/9FIa+7f6PiWgvK778gV/XqpdlhLiLegAAAABJRU5ErkJggg==" alt="Illustration for Parallax mapping in low resolution" />
<picture class="card-background card-image">
<img class="card-image" src="images/projects/parallax.jpg" alt="Illustration for Parallax mapping" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Parallax' is a simple demonstration of parallax mapping, with a comparison to other techniques such as normal mapping.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://github.com/piellardj/parallax-mapping/">
<span class="card-link-label">Github</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Fractal navigator</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABVklEQVR42h2QzUvCABjG39c1Z224nInMUpIZ9gXBSvwIGSqWleTJNPMgeMsOJhihQrfoEASF0ME6S1iQRNEt+st68rDDtvd93t/zI5FJYpKZ3EwBwbapSJWwfn2wMWykvzr5797huL03qCVayaW0Xws4xP/pGSaVSRd4Xbbvz7vOY8bDkTlsJN8vsuPL3Ki50z+JncUMyzfrx8I0k5PJwxQShZRXPY0Y9+X4qJX96OXGnd2XZuaxmuhmVoth3dRk3S6QwjRn48UpIep0VJd9N4XIWzv/c1v6vSt/XhWe6lY3tVIKeaOaEnSImsCEJyiJeMdX/HuuW5jDNHZe23nsIwVZSEQu0glXTJeMi93MGq6DASTgARXYQAhO0Hom5OAn9EAbdOpX4uiHluiKxuiN9nAAE/ChTtzAEMFUekGDtUFtGwbhETbhFGaPw/qWIsG1e+Id0yLTH7KRWYwKgK5rAAAAAElFTkSuQmCC" alt="Illustration for Fractal navigator in low resolution" />
<picture class="card-background card-image">
<source class="card-image" srcset="images/projects/fractal_512.webp, images/projects/fractal_800.webp 1.1x">
<img class="card-image" src="images/projects/fractal_512.jpg" alt="Illustration for Fractal navigator" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Fractal' is a Mandelbrot and Julia fractal navigator.</p>
<p>The Julia fractal seed can be chosen dynamically on the Mandelbrot render, making it easy to visualize when the set is connected or not.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://github.com/piellardj/fractal-navigator/">
<span class="card-link-label">Github</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Particles</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABaklEQVR42iXPa0+CYAAFYOQF8UIML6RTATUVQwJBE3i9BcW0RE0EuixTa7W19f8/h+t8Ps/ODhLHAZMjlcvKbCr6D72XpX7wRj+vN7+7269w+vQwuBuKcrtcZKgEgcdiMSSOY4U8pUncfNJZO91HR31aDD6D0ffL5H1jrh3VNttah+NKWTJNAPQEwD+YjUXXll1L2c76ew8efRguerNJZ3zd7EncBc/QVAoDKIJjIJ8hpVbZNgTXVjaO9rwYHDy494zNXLGgYKi1rsg2qkyWTkdlBKDoGZmosXlDrbt299nV9xv4EQz3vrG971qw1Zd5SSjV+Xw2k8ZxgEQ/iDjG5M6uBHY+lV/X5sEfHQN4CIzA1eyhoF1xYrNYZXMZOnUCUQCIRpKNatGGUrg03zz4tjV3W91fqNawpUpsu1HgK1maSmIYegLRSCpB8BVmrIvevR6ujHA1CJe9lSOP9YYillv1c7ZEUySBgdgfdX5CXoMWZ04AAAAASUVORK5CYII=" alt="Illustration for Particles in low resolution" />
<picture class="card-background card-image">
<img class="card-image" src="images/projects/particles.jpg" alt="Illustration for Particles" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Particles' is an interactive particle system evolving with the law of gravitation.
You can use mouse buttons to either attract or repulse the particles.</p>
<p>The whole simulation runs on GPU.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://github.com/piellardj/particles-gpu/">
<span class="card-link-label">Github</span>
</a>
</div>
</div>
</div>
</div>
<div class="projects-grid-cell">
<h2 class="card-title">Sampler 2D</h2>
<div class="card-frame">
<img class="card-background card-image blurred" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQBwYWludC5uZXQgNC4wLjE51NayZAAAAT5JREFUeNotkEurglAUhQVTemhFVBqhUZomDgRf2APJSbeiSGkQKERORIMGTRqJv/2uLvcMPLjO/tbeaxO1Wq3RaIzH481mk6ZpWZZVVRVFcb1eoyjK8xzK+/0+Ho+z2azZbBIUReEajUaWZYVhmGXZ8/mM4/jn7zwej8/n83q9DoeDJEkMw/wDHMfpuu77/vl8Brbb7dbrNX5vtxuq4QIFQLvdJmiaBjAcDheLheu6KMJsjuMYhoEvJrnf70mSbLfb6XT6BdABGfr9PgC44sHzPHSDH5Tlcnk6nS6Xy2q1mkwmLMt+gXq93uv18Izq/X4PTFEUnucRTFVVlAZBYJomFtNqtQiSJMF0Op35fI55EA4jYSHdbhcRgWmahmrYDQYDWH8BbBaoIAi2baMJkoiiCAXxMDR0WZahwIKm6V+FsUd3Jd0hjgAAAABJRU5ErkJggg==" alt="Illustration for Sampler 2D in low resolution" />
<picture class="card-background card-image">
<img class="card-image" src="images/projects/sampler-2D.png" alt="Illustration for Sampler 2D" />
</picture>
<div class="card-content card-reveal">
<div class="card-body">
<p>'Sampler 2D' is a micro-project.
It provides a way to efficiently generate random samples from a discrete 2D density function.</p>
</div>
<div class="card-action">
<a class="card-link" href="https://github.com/piellardj/sampler2D/">
<span class="card-link-label">Github</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="badge-shelf">
<a class="badge" href="mailto:[email protected]" title="Email">
<svg xmlns="http://www.w3.org/2000/svg" width="32px" height="32px" viewBox="0 0 512 512">
<path d="M512 85V448H0V85l256 224L512 85zM488 64H24L256 267 488 64z" />
</svg>
</a>
<a class="badge" href="https://github.com/piellardj" title="GitHub">
<svg xmlns="http://www.w3.org/2000/svg" width="32px" height="32px" viewBox="0 0 1024 1024">
<path d="M512 0C229 0 0 229 0 512c0 226 147 418 350 486 26 5 35-11 35-25 0-12 0-53-1-95C242 909 212 818 212 818c-23-59-57-75-57-75-47-32 4-31 4-31 51 4 78 53 78 53 46 78 120 56 149 43 5-33 18-56 33-68C305 725 185 682 185 485c0-56 20-102 53-137-5-13-23-65 5-136 0 0 43-14 141 53 41-11 85-17 128-17 44 0 87 6 128 17 98-66 141-52 141-52 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95 0 68-1 124-1 141 0 14 9 30 35 25C877 930 1024 738 1024 512 1024 229 795 0 512 0z" />
</svg>
</a>
<a class="badge" href="https://www.linkedin.com/in/jeremie-piellard/" title="LinkedIn">
<svg xmlns="http://www.w3.org/2000/svg" width="32px" height="32px" viewBox="0 0 512 512">
<path d="M30 177l93-1v304l-93 1v-304z" />
<path d="M200 177l89-1v39l0 11c26-26 53-45 97-45 51 0 100 21 100 91v208l-90 1v-159c0-35-9-58-51-58-37 0-52 7-52 55v160l-92 1v-304z" />
<path d="M128 81c0 28-23 51-51 51s-51-23-51-51c0-28 23-51 51-51 28 0 51 23 51 51z" />
</svg>
</a>
</div>
</footer>
<script type="text/javascript">
var Page = Page || {};
Object.defineProperty(Page, "version", {
value: "2024-11-20T23%3A07%3A57.483Z",
writable: false,
});
</script>
<script src="script/page.min.js?v=2024-11-20T23%3A07%3A57.483Z"></script>
</body>
</html>