Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Public Function m3MatrixTranslate(ByRef m As m3Matrix, ByVal tx As Double, ByVal ty As Double, ByVal tz As Double) As m3Matrix
  2. m.m41 = m.m41 + tx
  3. m.m42 = m.m42 + ty
  4. m.m43 = m.m43 + tz
  5. m3MatrixTranslate = m
  6. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement