mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
7 lines
70 B
Go
7 lines
70 B
Go
|
package main
|
||
|
|
||
|
func Foo(v vec4) vec4 {
|
||
|
v2 := mat4(1) * v
|
||
|
return v2
|
||
|
}
|