Created
November 3, 2015 09:52
-
-
Save Tzeentchful/62f2e1c5a243c502cdc3 to your computer and use it in GitHub Desktop.
This file contains 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
void ClothPoint::TimeStep(float _dt) | |
{ | |
if (m_Moveable) | |
{ | |
D3DXVECTOR3 temp = m_Pos; | |
m_Pos += DAMPING * (m_Pos - m_PrevPos) + (m_Acceleration * _dt); | |
m_PrevPos = temp; | |
m_Acceleration = D3DXVECTOR3(0, 0, 0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment