Skip to content

Commit 8c4974c

Browse files
committed
updated links for deployment
1 parent 114fac3 commit 8c4974c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/prism.min.js"></script>
1212

1313
<!-- Stylesheets -->
14-
<link rel="stylesheet" href="/Stylesheets/visualization.css">
14+
<link rel="stylesheet" href="/ProceduralGeneration/Stylesheets/visualization.css">
1515
</head>
1616
<body>
1717
<div class="container">
@@ -204,13 +204,13 @@ <h3>Smoothing it out</h3>
204204

205205
<p>So how do we achieve a smoother noise? We can figure this out by looking at 1D noise, and think about sampling 10 points from perlin noise.</p>
206206

207-
<img src="/Images/InfrequentSamplingNoise.PNG" alt="Infrequent Perlin noise sampling example">
207+
<img src="/ProceduralGeneration/Images/InfrequentSamplingNoise.PNG" alt="Infrequent Perlin noise sampling example">
208208

209209
<p>From the above, we can see that the values sampled can be quite different. You can think of this as sampling the 10 points at <code>x = 1, 2, 3, ...</code>.</p>
210210

211211
<p>What if we sampled points more frequently instead?</p>
212212

213-
<img src="/Images/FrequentSamplingNoise.PNG" alt="Frequent Perlin noise sampling example">
213+
<img src="/ProceduralGeneration/Images/FrequentSamplingNoise.PNG" alt="Frequent Perlin noise sampling example">
214214

215215
<p>From the above, we can see that the values sampled are <em>a lot closer</em>; you can think of this as sampling the 10 points at <code>x = 0.2, 0.4, 0.6 ...</code>.</p>
216216

0 commit comments

Comments
 (0)