ebiten: update GeoM.Rotate() comment (#3106)

This commit is contained in:
Barış
2024-09-17 17:47:17 +03:00
committed by GitHub
parent 2270359cd4
commit b17ae6135e

View File

@@ -121,7 +121,7 @@ func (g *GeoM) Translate(tx, ty float64) {
g.ty += ty
}
// Rotate rotates the matrix by theta.
// Rotate rotates the matrix clockwise by theta.
// The unit is radian.
func (g *GeoM) Rotate(theta float64) {
if theta == 0 {