Difference between revisions of "love.physics.newRevoluteJoint"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 +
Create a pivot joint between two bodies.
 +
 +
This joint connects two bodies to a point around which they can pivot.
  
 
== Function ==
 
== Function ==
Line 16: Line 19:
 
* [[parent::love.physics]]
 
* [[parent::love.physics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Create a pivot joint between two bodies.
 +
}}

Revision as of 16:17, 14 February 2010

Create a pivot joint between two bodies.

This joint connects two bodies to a point around which they can pivot.

Function

Synopsis

joint = love.physics.newRevoluteJoint( body1, body2, x, y )

Arguments

body body1
The body to attach to the mouse.
body body2
The body to attach to the mouse.
number x
The x position of the connecting point.
number y
The y position of the connecting point.

Returns

joint joint
The new revolute joint.

See Also