Skip to content

Commit 186d2f6

Browse files
authored
Merge pull request #1453 from CodingTrain/fix-desc-181
fix description and capitalisation
2 parents 107a2cf + 7f35674 commit 186d2f6

File tree

1 file changed

+10
-10
lines changed
  • content/videos/challenges/181-image-stippling

1 file changed

+10
-10
lines changed

content/videos/challenges/181-image-stippling/index.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"title": "Weighted Voronoi Stippling",
33
"videoNumber": "181",
4-
"description": "Stippling is an artistic technique that uses numerous dots to craft an image. In this coding challenge I attempt to implement a weighted Voronoi stippling algorithm with p5.js along with the Delaunay triangulation package from the d3.js.",
4+
"description": "Stippling is an artistic technique that uses numerous dots to craft an image. In this coding challenge I attempt to implement a weighted Voronoi stippling algorithm with p5.js along with the Delaunay triangulation package from d3.js.",
55
"videoId": "Bxdt6T_1qgc",
66
"nebulaSlug": "codingtrain-coding-challenge-181-weighted-voronoi-stippling",
77
"date": "2024-02-22",
88
"languages": ["p5.js", "JavaScript"],
9-
"topics": ["Delaunay triangulation", "image stippling", "voronoi", "sweep algorithm", "Lloyd's algorithm"],
9+
"topics": ["Delaunay triangulation", "image stippling", "Voronoi", "sweep algorithm", "Lloyd's algorithm"],
1010
"canContribute": true,
1111
"relatedChallenges": ["c4-worley-noise", "33-poisson-disc-sampling"],
1212
"timestamps": [
1313
{ "time": "0:00", "title": "Hello!" },
14-
{ "time": "0:37", "title": "What is a delaunay triangulation?" },
14+
{ "time": "0:37", "title": "What is a Delaunay triangulation?" },
1515
{ "time": "2:31", "title": "d3-delaunay package" },
1616
{ "time": "2:49", "title": "Coding the delaunay triangulation." },
17-
{ "time": "6:38", "title": "What is a voronoi diagram?" },
17+
{ "time": "6:38", "title": "What is a Voronoi diagram?" },
1818
{ "time": "9:17", "title": "voronoi function on the delaunay object" },
1919
{ "time": "10:25", "title": "Things you could try with the Voronoi diagram" },
2020
{ "time": "10:56", "title": "Lloyd's \"relaxation\" algorithm" },
@@ -47,15 +47,15 @@
4747
},
4848
{
4949
"title": "Delaunay Triangulation",
50-
"description": "Visualization the delaunay triangulation with d3-delaunay.",
50+
"description": "Visualization the Delaunay triangulation with d3-delaunay.",
5151
"image": "triangulation.png",
5252
"urls": {
5353
"p5": "https://editor.p5js.org/codingtrain/sketches/fuQz_-FnA"
5454
}
5555
},
5656
{
5757
"title": "Voronoi Diagram",
58-
"description": "Calculating and drawing the voronoi diagram (with moving points).",
58+
"description": "Calculating and drawing the Voronoi diagram (with moving points).",
5959
"image": "2.jpg",
6060
"urls": {
6161
"p5": "https://editor.p5js.org/codingtrain/sketches/GpeT1W8X1"
@@ -102,8 +102,8 @@
102102
}
103103
},
104104
{
105-
"title": "Weighted Stippling - video",
106-
"description": "Implementation of applying weighted voronoi stippling algorithm to a moving image.",
105+
"title": "Weighted Stippling - Video",
106+
"description": "Implementation of applying weighted Voronoi stippling algorithm to a moving image.",
107107
"image": "6.png",
108108
"urls": {
109109
"p5": "https://editor.p5js.org/codingtrain/sketches/7TKSgi16z"
@@ -142,7 +142,7 @@
142142
"icon": "🔗",
143143
"title": "Polygons and meshes by Paul Bourke",
144144
"url": "https://paulbourke.net/geometry/polygonmesh/",
145-
"description": "Notes and algorithms dealing with polygons and meshes, includes Calculating the area and centroid of a polygon (1988)"
145+
"description": "Notes and algorithms dealing with polygons and meshes, includes calculating the area and centroid of a polygon (1988)"
146146
},
147147
{
148148
"icon": "🎨",
@@ -172,7 +172,7 @@
172172
"icon": "🔗",
173173
"title": "Mike Bostock's Voronoi Stippling",
174174
"url": "https://observablehq.com/@mbostock/voronoi-stippling",
175-
"description": "Mike Bostock's observable notebook on voronoi stippling with d3.js."
175+
"description": "Mike Bostock's observable notebook on Voronoi stippling with d3.js."
176176
}
177177
]
178178
},

0 commit comments

Comments
 (0)