mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-10-17 22:21:47 +00:00
Add delta time stuff
This commit is contained in:
@@ -2043,6 +2043,11 @@ HMM_INLINE hmm_mat4 &operator*=(hmm_mat4 &Left, float Right)
|
||||
return (Left = Left * Right);
|
||||
}
|
||||
|
||||
HMM_INLINE hmm_quaternion &operator*=(hmm_quaternion &Left, hmm_quaternion Right)
|
||||
{
|
||||
return (Left = Left * Right);
|
||||
}
|
||||
|
||||
HMM_INLINE hmm_quaternion &operator*=(hmm_quaternion &Left, float Right)
|
||||
{
|
||||
return (Left = Left * Right);
|
||||
|
Reference in New Issue
Block a user