Finish wrapper function renames

This commit is contained in:
Garrett Brown
2020-08-16 18:25:27 -04:00
parent a5004f4c8d
commit 59a1a4b2cd
16 changed files with 49 additions and 77 deletions
+4 -4
View File
@@ -59,24 +59,24 @@ public:
/**
* Sets the response speed.
**/
void setFrequency(float hz);
void setStiffness(float hz);
/**
* Gets the response speed.
**/
float getFrequency() const;
float getStiffness() const;
/**
* Sets the damping ratio.
* 0 = no damping, 1 = critical damping.
**/
void setDampingRatio(float d);
void setDamping(float d);
/**
* Gets the damping ratio.
* 0 = no damping, 1 = critical damping.
**/
float getDampingRatio() const;
float getDamping() const;
private:
// The Box2D DistanceJoint object.