Difference between revisions of "B2.WeldJoint"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' android, ios, mac, pc<br/>
+
<languages />
'''Available since:''' Gideros 2011.6<br/>
+
<!-- GIDEROSOBJ:b2.WeldJoint -->
=== Description ===
+
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/>
<br />
+
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
A weld joint essentially glues two bodies together. A weld joint may distort somewhat because the island constraint solver is approximate. <br />
+
'''<translate>Inherits from</translate>:''' [[Special:MyLanguage/b2.Joint|b2.Joint]]<br/>
<br />
+
 
 +
=== <translate>Description</translate> ===
 +
A weld joint essentially glues two bodies together. A weld joint may distort somewhat because the island constraint solver is approximate.
 +
 
 +
=== <translate>Examples</translate> ===
 +
'''Weld joint'''
 +
<syntaxhighlight lang="lua">
 +
local jointDef = b2.createWeldJointDef(body1, body2, 100, 100, 130, 100)
 +
local weldJoint = world:createJoint(jointDef)
 +
</syntaxhighlight>
 +
 
 
{|-
 
{|-
| style="width: 50%;"|
+
| style="width: 50%; vertical-align:top;"|
=== Methods ===
+
=== <translate>Methods</translate> ===
[[b2.WeldJoint:getDampingRatio]] - returns damping ratio<br/>
+
[[Special:MyLanguage/b2.WeldJoint:getDampingRatio|b2.WeldJoint:getDampingRatio]] ''<translate>returns damping ratio</translate>''<br/><!-- GIDEROSMTD:b2.WeldJoint:getDampingRatio() returns damping ratio -->
[[b2.WeldJoint:getFrequency]] - returns frequency in Hz<br/>
+
[[Special:MyLanguage/b2.WeldJoint:getFrequency|b2.WeldJoint:getFrequency]] ''<translate>returns frequency in Hz</translate>''<br/><!-- GIDEROSMTD:b2.WeldJoint:getFrequency() returns frequency in Hz -->
[[b2.WeldJoint:setDampingRatio]] - sets damping ratio<br/>
+
[[Special:MyLanguage/b2.WeldJoint:setDampingRatio|b2.WeldJoint:setDampingRatio]] ''<translate>sets damping ratio</translate>''<br/><!-- GIDEROSMTD:b2.WeldJoint:setDampingRatio(damping) sets damping ratio -->
[[b2.WeldJoint:setFrequency]] - sets frequency in Hz<br/>
+
[[Special:MyLanguage/b2.WeldJoint:setFrequency|b2.WeldJoint:setFrequency]] ''<translate>sets frequency in Hz</translate>''<br/><!-- GIDEROSMTD:b2.WeldJoint:setFrequency(frequency) sets frequency in Hz -->
| style="width: 50%;"|
+
 
=== Events ===
+
| style="width: 50%; vertical-align:top;"|
=== Constants ===
+
=== <translate>Events</translate> ===
 +
=== <translate>Constants</translate> ===
 
|}
 
|}
 +
 +
----
 +
*'''[[B2.Joint]]'''
 +
*'''[[LiquidFun]]'''

Latest revision as of 15:27, 13 July 2023


Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2011.6
Inherits from: b2.Joint

Description

A weld joint essentially glues two bodies together. A weld joint may distort somewhat because the island constraint solver is approximate.

Examples

Weld joint

local jointDef = b2.createWeldJointDef(body1, body2, 100, 100, 130, 100)
local weldJoint = world:createJoint(jointDef)

Methods

b2.WeldJoint:getDampingRatio returns damping ratio
b2.WeldJoint:getFrequency returns frequency in Hz
b2.WeldJoint:setDampingRatio sets damping ratio
b2.WeldJoint:setFrequency sets frequency in Hz

Events

Constants