Guest User

Untitled

a guest
Aug 14th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. The use of column-major format in the spec and blue book
  2. X_x Y_x Z_x T_x
  3. X_y Y_y Z_y T_y
  4. X_z Y_z Z_z T_z
  5. W_a W_b W_c W_w
  6.  
  7. 0 4 8 c
  8. 1 5 9 d
  9. 2 6 a e
  10. 3 7 b f
  11.  
  12. float vec4_length3(float v[4]);
  13.  
  14. float M[16] = {...};
  15.  
  16. float T_length = vec4_length3(&M[c]);
Add Comment
Please, Sign In to add comment