changeset 113:7a4e942814bc

[MrJuneJune] Fixed static assets
author June Park <parkjune1995@gmail.com>
date Sun, 04 Jan 2026 14:42:54 -0800
parents d6d578b49a19
children e2a73e64e8e6
files mrjunejune/src/blog/optimizing-grass-rendering/index.md mrjunejune/src/public/blue-noise-random.png mrjunejune/src/public/blue-noises-optimal.png mrjunejune/src/public/fast-blue.mp4 mrjunejune/src/public/slow-blue.mp4 mrjunejune/src/public/white-noise-grass.png
diffstat 6 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mrjunejune/src/blog/optimizing-grass-rendering/index.md	Sun Jan 04 11:38:44 2026 -0800
+++ b/mrjunejune/src/blog/optimizing-grass-rendering/index.md	Sun Jan 04 14:42:54 2026 -0800
@@ -37,7 +37,7 @@
 
 This is computationally the most efficient as there is no constraints on where it can be placed which mean it will often lead to clumping together.
 
-<div class="center"> <img src="/white_noise_grass.png" /> </div>
+<div class="center"> <img src="/public/white-noise-grass.png" /> </div>
 
 Above image is okay, but lacks realism. We can do better.
 
@@ -79,12 +79,12 @@
 
 As you can see from below image, this approach improves visual quality... 
 
-<div class="center"> <img src="/blue_noise_random.png" /> </div>
+<div class="center"> <img src="/public/blue-noise-random.png" /> </div>
 
 ...but at the cost of computational complexity. As the number of points increases, available space becomes limited, requiring more attempts to place a point. This can take several seconds, which isn’t ideal.
 
 <video width="100%" controls>
-  <source src="/slow_blue.mp4" type="video/mp4" />
+  <source src="/public/slow-blue.mp4" type="video/mp4" />
 </video>
 
 ** It takes around 8 seconds for 800 points in 1000 x 800 with 30 radius which means it should be able to add 100 more points in theory **
@@ -145,13 +145,13 @@
 ```
 
 <video width="100%" controls>
-  <source src="/fast_blue.mp4" type="video/mp4" />
+  <source src="/public/fast-blue.mp4" type="video/mp4" />
 </video>
 
 ** It only took 2 seconds or so. It slows down at the end since it probably needed to look for one or two points using random number **
 
 
-<div class="center"> <img src="/blue_noises_optimal.png" /> </div>
+<div class="center"> <img src="/public/blue-noises-optimal.png" /> </div>
 
 
 ### Conclusion
Binary file mrjunejune/src/public/blue-noise-random.png has changed
Binary file mrjunejune/src/public/blue-noises-optimal.png has changed
Binary file mrjunejune/src/public/fast-blue.mp4 has changed
Binary file mrjunejune/src/public/slow-blue.mp4 has changed
Binary file mrjunejune/src/public/white-noise-grass.png has changed