aliases improved

This commit is contained in:
Timon Ringwald 2022-08-23 21:20:24 +02:00
parent 0166ccb791
commit 79549c6931

View File

@ -1,7 +1,7 @@
package advmath
type Vec3f = Vec3[float64]
type Vec2f = Vec2[float64]
type Vec3f = Vec[float64, Vec3[float64]]
type Vec2f = Vec[float64, Vec2[float64]]
type Vec3i = Vec3[int]
type Vec2i = Vec2[int]
type Vec3i = Vec[int, Vec3[int]]
type Vec2i = Vec[int, Vec2[int]]