Difference between revisions of "Joint:getReactionTorque"

(included link to other languages)
m
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Gets the reaction torque on Body 2.
+
Returns the reaction torque on the second body.
 +
 
 
== Function ==
 
== Function ==
 +
{{newin|[[0.8.0]]|080|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
torque = Joint:getReactionTorque( invdt )
 +
</source>
 +
=== Arguments ===
 +
{{param|number|invdt|How long the force applies. Usually the inverse time step or 1/dt.}}
 +
=== Returns ===
 +
{{param|number|torque|The reaction torque on the second body.}}
 +
 +
== Function ==
 +
{{oldin|[[0.8.0]]|080|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 8: Line 21:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|torque|The reaction torque on Body 2.}}
+
{{param|number|torque|The reaction torque on the second body.}}
 +
 
 
== See Also ==
 
== See Also ==
 
* [[parent::Joint]]
 
* [[parent::Joint]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Gets the reaction torque on Body 2.}}
+
{{#set:Description=Returns the reaction torque on the second body.}}
 +
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|Joint:getReactionTorque}}
 
{{i18n|Joint:getReactionTorque}}

Latest revision as of 20:04, 6 August 2012

Returns the reaction torque on the second body.

Function

Available since LÖVE 0.8.0
This variant is not supported in earlier versions.

Synopsis

torque = Joint:getReactionTorque( invdt )

Arguments

number invdt
How long the force applies. Usually the inverse time step or 1/dt.

Returns

number torque
The reaction torque on the second body.

Function

Removed in LÖVE 0.8.0
This variant is not supported in that and later versions.

Synopsis

torque = Joint:getReactionTorque( )

Arguments

None.

Returns

number torque
The reaction torque on the second body.

See Also


Other Languages