Skip to content

Commit b5114e9

Browse files
committed
adds
1 parent a46eefc commit b5114e9

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

filter/less/filter.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ Watch the introductory walkthrough for more information on how to get started:
161161

162162
The function `grayscale` should take an image and turn it into a black-and-white version of the same image.
163163

164-
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
164+
1. Watch the walkthrough:
165+
166+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
165167

166168
1. Implement a separate `grayscale_pixel` function, which will take an image and returns a gray-scaled `RGBTRIPLE` value for that pixel:
167169

@@ -186,7 +188,9 @@ The function `grayscale` should take an image and turn it into a black-and-white
186188

187189
The function `sepia` should take an image and turn it into a sepia version of the same image.
188190

189-
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
191+
1. Watch the walkthrough:
192+
193+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
190194

191195
1. Implement a separate `sepia_pixel` function, like you did for `grayscale_pixel`.
192196

@@ -196,15 +200,19 @@ The function `sepia` should take an image and turn it into a sepia version of th
196200

197201
The `reflect` function should take an image and reflect it horizontally.
198202

199-
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
203+
1. Watch the walkthrough:
204+
205+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
200206

201207
1. For reflect, it's cleaner to **not** use an additional helper function. You can implement the full reflect inside the `reflect` function.
202208

203209
### Blur
204210

205211
Finally, the `blur` function should take an image and turn it into a box-blurred version of the same image.
206212

207-
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
213+
1. Watch the walkthrough:
214+
215+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
208216

209217
1. Implement a separate `blur_pixel` function, like you did for `grayscale_pixel` and `sepia_pixel`.
210218

0 commit comments

Comments
 (0)