8 lines
118 B
Go
8 lines
118 B
Go
|
package advmath
|
||
|
|
||
|
type Vec3f = Vec3[float64]
|
||
|
type Vec2f = Vec2[float64]
|
||
|
|
||
|
type Vec3i = Vec3[int]
|
||
|
type Vec2i = Vec2[int]
|