Difference between revisions of "Region"
Jump to navigation
Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Lua]] | ||
Region '''class''': ('''Inheritance''': ''[[GraphicsObject]]'') | Region '''class''': ('''Inheritance''': ''[[GraphicsObject]]'') | ||
Latest revision as of 19:08, 18 March 2019
Region class: (Inheritance: GraphicsObject)
Class describing a region of coordinates.
Creation[edit]
- createRegion() : Region
- Creates an empty region.
Methods[edit]
- addRectangle(x1, y1, x2, y2)
- Adds a rectangle to the region.
- addPolygon(tableWithCoordinates)
- Adds an array of 2D locations. (example: {{0,0},{100,100}, {0,100}} for a triangle)