diff --git a/data.go b/data.go
index 9ce26df89f179efc5600dd26310048f947d49d6c..035e80dd60ef6d3639ae7cc6b5b852fd07eb5ee9 100644
--- a/data.go
+++ b/data.go
@@ -202,6 +202,7 @@ func PictureDataFromPicture(pic Picture) PictureData {
 	if pic, ok := pic.(PictureColor); ok {
 		for y := math.Floor(bounds.Pos.Y()); y < bounds.Pos.Y()+bounds.Size.Y(); y++ {
 			for x := math.Floor(bounds.Pos.X()); x < bounds.Pos.X()+bounds.Size.X(); x++ {
+				// this together with the Floor is a trick to get all of the pixels
 				at := V(
 					math.Max(x, bounds.Pos.X()),
 					math.Max(y, bounds.Pos.Y()),