From 4d6c6889de73eb5afc6acb12ab6d52cab8335d65 Mon Sep 17 00:00:00 2001 From: Josh Deprez Date: Mon, 2 Aug 2021 12:28:02 +1000 Subject: [PATCH] ebiten.GeoM --- engine/misc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/misc.go b/engine/misc.go index 35e9b90..054e755 100644 --- a/engine/misc.go +++ b/engine/misc.go @@ -18,7 +18,7 @@ type ZPos float64 // Z returns z as a float64. func (z ZPos) Z() float64 { return float64(z) } -// GeoMDef is a serialisable form of GeoM. +// GeoMDef is a serialisable form of ebiten.GeoM. type GeoMDef [6]float64 // Assumption: this has identical memory layout to GeoM // ToGeoMDef translates a GeoM to a GeoMDef using unsafe.Pointer.