advmath/aliases.go

8 lines
166 B
Go
Raw Normal View History

2022-08-23 21:12:41 +02:00
package advmath
2022-08-23 21:20:24 +02:00
type Vec3f = Vec[float64, Vec3[float64]]
type Vec2f = Vec[float64, Vec2[float64]]
2022-08-23 21:12:41 +02:00
2022-08-23 21:20:24 +02:00
type Vec3i = Vec[int, Vec3[int]]
type Vec2i = Vec[int, Vec2[int]]