Guest User

Untitled

a guest
Apr 7th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public static Matrix4 FromMatrix3(Matrix3 matrix)
  2. {
  3. return new Matrix4
  4. (
  5. Vector4(matrix.X.X, matrix.X.Y, matrix.X.Z, 0),
  6. Vector4(matrix.Y.X, matrix.Y.Y, matrix.Y.Z, 0),
  7. Vector4(matrix.Z.X, matrix.Z.Y, matrix.Z.Z, 0),
  8. Vector4(0, 0, 0, 1)
  9. );
  10. }
Add Comment
Please, Sign In to add comment