From 97c669853fe354df13f1ef3b3a397333bbca25b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F?= <36481442+setanarut@users.noreply.github.com> Date: Mon, 16 Sep 2024 03:12:32 +0300 Subject: [PATCH] Update Rotate() comment add (clockwise) info --- geom.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom.go b/geom.go index ca8adf784..120aef5d4 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 by theta (clockwise). // The unit is radian. func (g *GeoM) Rotate(theta float64) { if theta == 0 {