Difference between revisions of "B2.PolygonShape:set"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Special:MyLanguage/b2.PolygonShape|b2.PolygonShape]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate><br />
+
Sets the vertices. This assumes the vertices define a convex polygon. It is assumed that the exterior is the the right of each edge.
Copy vertices. This assumes the vertices define a convex polygon. It is assumed that the exterior is the the right of each edge.<br />
+
<syntaxhighlight lang="lua">
<br /></translate>
+
b2.PolygonShape:set(vertices)
<source lang="lua">
+
</syntaxhighlight>
b2.PolygonShape:set(vertices)
+
 
</source>
 
 
=== Parameters ===
 
=== Parameters ===
'''vertices''': (any) <translate>A list of numbers that contains the x, y coordinates of the vertices sequentially</translate> <br/>
+
'''vertices''': (any) a list of numbers that contains the x, y coordinates of the vertices sequentially <br/>
 +
 
 
=== Examples ===
 
=== Examples ===
'''Example'''<br/>
+
<syntaxhighlight lang="lua">
<source lang="lua">local polygonShape = b2.PolygonShape.new()
+
local polygonShape = b2.PolygonShape.new()
polygonShape:set(1,4, 2,6, 3,7)</source>
+
polygonShape:set(1,4, 2,6, 3,7)
 +
</syntaxhighlight>
 +
 
 +
{{B2.PolygonShape}}

Latest revision as of 18:07, 12 July 2023


Available since: Gideros 2011.6
Class: b2.PolygonShape

Description

Sets the vertices. This assumes the vertices define a convex polygon. It is assumed that the exterior is the the right of each edge.

b2.PolygonShape:set(vertices)

Parameters

vertices: (any) a list of numbers that contains the x, y coordinates of the vertices sequentially

Examples

local polygonShape = b2.PolygonShape.new()
polygonShape:set(1,4, 2,6, 3,7)




LiquidFun