remove debug print from typewriter example

This commit is contained in:
faiface 2017-05-24 02:21:25 +02:00
parent eab5be6207
commit 51e1843f4b
1 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package main
import (
"fmt"
"image/color"
"math"
"math/rand"
@ -150,7 +149,6 @@ func shake(tw *typewriter, intensity, friction float64) {
intensity -= friction * dt
tw.Offset(off)
fmt.Println(off)
}
}