Fix zx proc

This commit is contained in:
Elliot Waite 2020-12-17 14:42:35 -08:00 committed by GitHub
parent 21dbb2b908
commit 4a07ed16f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -351,7 +351,7 @@ proc yz*(a: Vec3): Vec2 {.inline.} =
vec2(a.y, a.z)
proc zx*(a: Vec3): Vec2 {.inline.} =
vec2(a.y, a.x)
vec2(a.z, a.x)
proc zy*(a: Vec3): Vec2 {.inline.} =
vec2(a.z, a.y)