[Algorithms] Formula for Damping f times
Brought to you by:
vexxed72
From: Zafar Q. <zaf...@co...> - 2009-06-05 10:08:14
|
Hi, This is a semi-trivial but I can't quite remember the answer, even though I've done it before. I have an update function sort of like this.. void updateX( float deltaTime) { x = x*k; } k is a constant less than 1.0. Now to do the damping properly I need to perform "x=x*k" deltaTime times, where deltaTime is a fraction. Can anyone help with this please? I recall it just being a log or something. Cheers Zafar Qamar ********************************************************************************** Disclaimer The information and attached documentation in this e-mail is intended for the use of the addressee only and is confidential. If you are not the intended recipient please delete it and notify us immediately by telephoning or e-mailing the sender. Please note that without Codemasters’ prior written consent any form of distribution, copying or use of this communication or the information in it is strictly prohibited and may be unlawful. Attachments to this e-mail may contain software viruses. You are advised to take all reasonable precautions to minimise this risk and to carry out a virus check on any documents before they are opened. Any offer contained in this communication is subject to Codemasters’ standard terms & conditions and must be signed by both parties. Except as expressly provided otherwise all information and attached documentation in this e-mail is subject to contract and Codemasters’ board approval. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Codemasters. This footnote also confirms that this email message has been swept by SurfControl for the presence of computer viruses. ********************************************************************************** |