From b17ae6135eb635594e971bafabae8ad93d7d0bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F?= <36481442+setanarut@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:47:17 +0300 Subject: [PATCH] ebiten: update GeoM.Rotate() comment (#3106) --- geom.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom.go b/geom.go index ca8adf784..36bea1438 100644 --- a/geom.go +++ b/geom.go @@ -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 {