Difference between revisions of "Joint:getReactionForce"

m (1 revision: Importing from potato (again).)
(Added 0.8.0 variant.)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
Returns the reaction force in newtons on the second body
  
Gets the reaction force on Body 2 at the joint anchor.
 
 
== Function ==
 
== Function ==
 +
{{newin|[[0.8.0]]|080|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
x, y = Joint:getReactionForce( invdt )
 +
</source>
 +
=== Arguments ===
 +
{{param|number|x|How long the force applies. Usually the inverse time step or 1/dt.}}
 +
=== Returns ===
 +
{{param|number|x|The x-component of the force.}}
 +
{{param|number|y|The y-component of the force.}}
 +
 +
== Function ==
 +
{{oldin|[[0.8.0]]|080|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 11: Line 24:
 
{{param|number|x|The x-component of the force.}}
 
{{param|number|x|The x-component of the force.}}
 
{{param|number|y|The y-component of the force.}}
 
{{param|number|y|The y-component of the force.}}
 +
 
== See Also ==
 
== See Also ==
 
* [[parent::Joint]]
 
* [[parent::Joint]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Gets the reaction force on Body 2 at the joint anchor.}}
+
{{#set:Description=Returns the reaction force on the second body.}}
 +
{{#set:Since=000}}
 +
== Other Languages ==
 +
{{i18n|Joint:getReactionForce}}

Latest revision as of 12:44, 4 May 2012

Returns the reaction force in newtons on the second body

Function

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

Synopsis

x, y = Joint:getReactionForce( invdt )

Arguments

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

Returns

number x
The x-component of the force.
number y
The y-component of the force.

Function

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

Synopsis

x, y = Joint:getReactionForce( )

Arguments

None.

Returns

number x
The x-component of the force.
number y
The y-component of the force.

See Also


Other Languages