Created
February 10, 2015 00:05
-
-
Save yorung/5e212f48214586c64243 to your computer and use it in GitHub Desktop.
vector swizzling from lua
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local v = Vec4() | |
v = Vec4(1, 2, 3, 4) | |
v.wzyx = Vec4(1, 2, 3, 4) | |
v = Vec4(1.111, 2.2222, 3.333, 4.444).wzyx | |
v.w = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment