Difference between revisions of "Region"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''Region Class''': (Inheritance: Component->Object) Class describing a region of coordinates createRegion(): Creates an empty region ===Properties=== ===Methods=== …')
 
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''Region Class''': (Inheritance: [[Component]]->[[Object]])
+
[[Category:Lua]]
Class describing a region of coordinates
+
Region '''class''': ('''Inheritance''': ''[[GraphicsObject]]'')
  
 +
Class describing a region of coordinates.
  
createRegion(): Creates an empty region
+
== Creation ==
 +
:; [[createRegion]]() : Region
 +
:: Creates an empty region.
  
===Properties===
+
== Methods ==
 +
; 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)
  
===Methods===
+
== See also ==
  addRectangle(x1, y1, x2, y2): Adds a rectangle to the region
+
* [[Lua]]
  addPolygon(tablewithcoordinates): Adds an array of 2D locations. (example : {{0,0},{100,100}, {0,100}} for a triangle )
+
* [[Help_File:Script engine|Script engine]]
 +
 
 +
=== Related Functions ===
 +
* [[createRegion]]
 +
 
 +
=== Related Classes ===
 +
* [[GraphicsObject]]
 +
* [[Object]]
 +
* [[Control]]
 +
* [[Component]]
 +
* [[WinControl]]
 +
* [[Application]]
 +
* [[Form]]

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)

See also[edit]

Related Functions[edit]

Related Classes[edit]