Changed function names of love.physics to match Box2D.

This commit is contained in:
rude
2009-08-04 23:05:49 +02:00
parent cc9a142a98
commit 797f536f05
22 changed files with 157 additions and 236 deletions
+2 -2
View File
@@ -72,13 +72,13 @@ namespace box2d
* Sets the damping ratio.
* 0 = no damping, 1 = critical damping.
**/
void setDamping(float d);
void setDampingRatio(float d);
/**
* Gets the damping ratio.
* 0 = no damping, 1 = critical damping.
**/
float getDamping() const;
float getDampingRatio() const;
};