Difference between revisions of "Shape"
(Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2011.6<br/> === Description === <br /> The `Shape` class is used create and display vector graphics.<...") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' <br/> | + | '''Supported platforms:''' android, ios, mac, pc<br/> |
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
Line 6: | Line 6: | ||
The `Shape` class is used create and display vector graphics.<br /> | The `Shape` class is used create and display vector graphics.<br /> | ||
<br /> | <br /> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
{|- | {|- | ||
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Methods === | === Methods === | ||
+ | [[Shape.new]] - creates a new Shape object<br/> | ||
+ | [[Shape:beginPath]] - resets the current path<br/> | ||
+ | [[Shape:clear]] - clears the graphics that were drawn to this Shape object, and resets fill and line style settings<br/> | ||
+ | [[Shape:closePath]] - marks the current subpath as closed, and starts a new subpath with a point the same as the start and end of the newly closed subpath<br/> | ||
+ | [[Shape:endPath]] - ends the current path and draws the geometry by using the specified line and fill styles<br/> | ||
+ | [[Shape:lineTo]] - adds the given point to the current subpath, connected to the previous one by a straight line.<br/> | ||
+ | [[Shape:moveTo]] - creates a new subpath with the given point<br/> | ||
+ | [[Shape:setFillStyle]] - sets the fill style that Shape object uses for subsequent drawings<br/> | ||
+ | [[Shape:setLineStyle]] - sets the line style that Shape object uses for subsequent drawings<br/> | ||
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
+ | [[Shape.EVEN_ODD]] | ||
+ | [[Shape.NONE]] | ||
+ | [[Shape.NON_ZERO]] | ||
+ | [[Shape.SOLID]] | ||
+ | [[Shape.TEXTURE]] | ||
|} | |} |
Revision as of 08:57, 23 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
The `Shape` class is used create and display vector graphics.
MethodsShape.new - creates a new Shape object |
EventsConstantsShape.EVEN_ODD Shape.NONE Shape.NON_ZERO Shape.SOLID Shape.TEXTURE |