Nice! The height -= 0.2 statement is a shortcut for height = height - 0.2.
height -= 0.2
height = height - 0.2
Psst: there are *= and /= operators as well.
*=
/=
Would that operator really when trying to decrement and assign?