gg/src/gx/transform.go

38 lines
528 B
Go
Raw Normal View History

2023-02-17 12:47:17 +03:00
package gx
2023-02-17 23:51:40 +03:00
import (
"github.com/hajimehoshi/ebiten/v2"
)
type Matrix = ebiten.GeoM
type Float = float64
2023-02-17 12:47:17 +03:00
type Vector struct {
X, Y Float
}
type Transform struct {
// Position, scale, rotate around.
P, S, RA Vector
// Rotation angle in radians.
R Float
}
func T() Transform {
ret := Transform{}
return ret
}
2023-02-17 23:51:40 +03:00
// Returns the GeoM with corresponding
// to the transfrom transformation
func (t Transform)Matrix() Matrix {
g := &Matrix{}
g.Scale(t.S.X, t.S.Y)
g.Rotate(t.R)
g.Translate(t.P.X, t.P.Y)
return *g
}