diff --git a/guide/english/algorithms/boundary-fill/index.md b/guide/english/algorithms/boundary-fill/index.md index d1bfb35476..75f4f0b500 100644 --- a/guide/english/algorithms/boundary-fill/index.md +++ b/guide/english/algorithms/boundary-fill/index.md @@ -36,3 +36,7 @@ void boundary_fill(int pos_x, int pos_y, int boundary_color, int fill_color) } ``` From the given code you can see that for any pixel that you land on, you first check whether it can be changed to the fill_color and then you do so for its neighbours till all the pixels within the boundary have been checked. + +### More Information: + +[A YouTube presentation of Boundary Fill](https://www.youtube.com/watch?v=au2CslPa4xU)