Merge pull request #26 from elliotwaite/patch-1

Fix zx proc
This commit is contained in:
treeform 2021-01-06 19:09:22 -08:00 committed by GitHub
commit 23e88bb951
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -360,7 +360,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)