Difference between revisions of "B2.PolygonShape"

From GiderosMobile
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
<!-- GIDEROSOBJ:b2.PolygonShape -->
 
<!-- GIDEROSOBJ:b2.PolygonShape -->
'''<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/>
+
'''Supported platforms:''' [[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/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Inherits from</translate>:''' [[Special:MyLanguage/b2.Shape|b2.Shape]]<br/>
+
'''Inherits from:''' [[Special:MyLanguage/b2.Shape|b2.Shape]]<br/>
=== <translate>Description</translate> ===
+
 
<translate><br />
+
=== Description ===
A convex polygon. It is assumed that the interior of the polygon is to the left of each edge.<br />
+
A convex polygon. It is assumed that the interior of the polygon is to the left of each edge.
<br /></translate>
+
 
=== <translate>Examples</translate> ===
+
=== Examples ===
'''Create a square box2d box'''<br/>
+
'''Create a square box2d box'''
<source lang="lua">--create box2d physical object
+
<source lang="lua">
 +
--create box2d physical object
 
local body = world:createBody{type = b2.STATIC_BODY}
 
local body = world:createBody{type = b2.STATIC_BODY}
 
local poly = b2.PolygonShape.new()
 
local poly = b2.PolygonShape.new()
 
poly:setAsBox(100, 100)
 
poly:setAsBox(100, 100)
local fixture = body:createFixture{shape = poly, density = 1.0,  
+
local fixture = body:createFixture{shape = poly, density = 1.0, friction = 0.1, restitution = 0.2}
friction = 0.1, restitution = 0.2}</source>
+
</source>
 +
 
 
{|-
 
{|-
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Methods</translate> ===
+
=== Methods ===
[[Special:MyLanguage/b2.PolygonShape.new|b2.PolygonShape.new]] <br/><!-- GIDEROSMTD:b2.PolygonShape.new -->
+
[[Special:MyLanguage/b2.PolygonShape.new|b2.PolygonShape.new]] ''creates a new polygon shape'' <br/><!-- GIDEROSMTD:b2.PolygonShape.new()  creates a new polygon shape -->
[[Special:MyLanguage/b2.PolygonShape:set|b2.PolygonShape:set]] ''<translate>sets vertices</translate>''<br/><!-- GIDEROSMTD:b2.PolygonShape:set -->
+
[[Special:MyLanguage/b2.PolygonShape:set|b2.PolygonShape:set]] ''sets vertices''<br/><!-- GIDEROSMTD:b2.PolygonShape:set(vertices) sets vertices -->
[[Special:MyLanguage/b2.PolygonShape:setAsBox|b2.PolygonShape:setAsBox]] ''<translate>set vertices to represent an oriented box</translate>''<br/><!-- GIDEROSMTD:b2.PolygonShape:setAsBox -->
+
[[Special:MyLanguage/b2.PolygonShape:setAsBox|b2.PolygonShape:setAsBox]] ''set vertices to represent an oriented box''<br/><!-- GIDEROSMTD:b2.PolygonShape:setAsBox(hx,hy,centerx,centery,angle) set vertices to represent an oriented box -->
 +
 
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Events</translate> ===
+
 
=== <translate>Constants</translate> ===
+
=== Events ===
 +
=== Constants ===
 
|}
 
|}
 +
 +
----
 +
*'''[[B2.Shape]]'''
 +
*'''[[LiquidFun]]'''

Revision as of 16:28, 7 January 2021


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.Shape

Description

A convex polygon. It is assumed that the interior of the polygon is to the left of each edge.

Examples

Create a square box2d box

--create box2d physical object
local body = world:createBody{type = b2.STATIC_BODY}
local poly = b2.PolygonShape.new()
poly:setAsBox(100, 100)
local fixture = body:createFixture{shape = poly, density = 1.0, friction = 0.1, restitution = 0.2}

Methods

b2.PolygonShape.new creates a new polygon shape
b2.PolygonShape:set sets vertices
b2.PolygonShape:setAsBox set vertices to represent an oriented box

Events

Constants