1
0
Fork 0

Initial commit

This commit is contained in:
Henrik Hautakoski 2025-06-07 20:26:00 +02:00
commit f26c478727
18 changed files with 621 additions and 0 deletions

11
math/position.go Normal file
View file

@ -0,0 +1,11 @@
package math
type Position Vec2f
func (p *Position) Set(v Vec2f) {
*p = Position(v)
}
func (p Position) Get() Vec2f {
return Vec2f(p)
}