Damped spring constraint for 2D physics. This resembles a spring joint that always wants to go back to a given length.
</description>
<tutorials>
</tutorials>
<demos>
</demos>
<methods>
<methodname="get_damping"qualifiers="const">
<returntype="float">
</return>
<description>
Return the damping ratio of the spring joint. A value of 0 indicates an undamped spring, while 1 causes the system to reach equilibrium as fast as possible (critical damping).
</description>
</method>
<methodname="get_length"qualifiers="const">
<returntype="float">
</return>
<description>
Return the maximum length of the spring joint.
</description>
</method>
<methodname="get_rest_length"qualifiers="const">
<returntype="float">
</return>
<description>
Return the resting length of the spring joint. The joint will always try to go to back this length when pulled apart.
</description>
</method>
<methodname="get_stiffness"qualifiers="const">
<returntype="float">
</return>
<description>
Return the stiffness of the spring joint. The joint applies a force equal to the stiffness times the distance from its resting length.
</description>
</method>
<methodname="set_damping">
<returntype="void">
</return>
<argumentindex="0"name="damping"type="float">
</argument>
<description>
Set the damping ratio of the spring joint. A value of 0 indicates an undamped spring, while 1 causes the system to reach equilibrium as fast as possible (critical damping).
</description>
</method>
<methodname="set_length">
<returntype="void">
</return>
<argumentindex="0"name="length"type="float">
</argument>
<description>
Set the maximum length of the spring joint.
</description>
</method>
<methodname="set_rest_length">
<returntype="void">
</return>
<argumentindex="0"name="rest_length"type="float">
</argument>
<description>
Set the resting length of the spring joint. The joint will always try to go to back this length when pulled apart.
</description>
</method>
<methodname="set_stiffness">
<returntype="void">
</return>
<argumentindex="0"name="stiffness"type="float">
</argument>
<description>
Set the stiffness of the spring joint. The joint applies a force equal to the stiffness times the distance from its resting length.