mirror of
https://github.com/bloeys/gglm.git
synced 2025-12-29 13:38:20 +00:00
13 lines
149 B
Go
Executable File
13 lines
149 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"github.com/bloeys/gglm/gglm"
|
|
)
|
|
|
|
func main() {
|
|
|
|
v := gglm.NewVec2([]float32{4, 5})
|
|
println(v.Mag())
|
|
println(v.SqrMag())
|
|
}
|