Difference between revisions of "Shape"
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
+ | <!-- GIDEROSOBJ:Shape --> | ||
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/> | '''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/> | ||
'''<translate>Available since</translate>:''' Gideros 2011.6<br/> | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> | ||
Line 23: | Line 24: | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== <translate>Methods</translate> === | === <translate>Methods</translate> === | ||
− | [[Special:MyLanguage/Shape.new|Shape.new]] ''<translate>creates a new Shape object</translate>''<br/> | + | [[Special:MyLanguage/Shape.new|Shape.new]] ''<translate>creates a new Shape object</translate>''<br/><!-- GIDEROSMTD:Shape.new --> |
− | [[Special:MyLanguage/Shape:beginPath|Shape:beginPath]] ''<translate>resets the current path</translate>''<br/> | + | [[Special:MyLanguage/Shape:beginPath|Shape:beginPath]] ''<translate>resets the current path</translate>''<br/><!-- GIDEROSMTD:Shape:beginPath --> |
− | [[Special:MyLanguage/Shape:clear|Shape:clear]] ''<translate>clears the graphics that were drawn to this Shape object, and resets fill and line style settings</translate>''<br/> | + | [[Special:MyLanguage/Shape:clear|Shape:clear]] ''<translate>clears the graphics that were drawn to this Shape object, and resets fill and line style settings</translate>''<br/><!-- GIDEROSMTD:Shape:clear --> |
− | [[Special:MyLanguage/Shape:closePath|Shape:closePath]] ''<translate>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</translate>''<br/> | + | [[Special:MyLanguage/Shape:closePath|Shape:closePath]] ''<translate>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</translate>''<br/><!-- GIDEROSMTD:Shape:closePath --> |
− | [[Special:MyLanguage/Shape:endPath|Shape:endPath]] ''<translate>ends the current path and draws the geometry by using the specified line and fill styles</translate>''<br/> | + | [[Special:MyLanguage/Shape:endPath|Shape:endPath]] ''<translate>ends the current path and draws the geometry by using the specified line and fill styles</translate>''<br/><!-- GIDEROSMTD:Shape:endPath --> |
− | [[Special:MyLanguage/Shape:lineTo|Shape:lineTo]] ''<translate>adds the given point to the current subpath, connected to the previous one by a straight line.</translate>''<br/> | + | [[Special:MyLanguage/Shape:lineTo|Shape:lineTo]] ''<translate>adds the given point to the current subpath, connected to the previous one by a straight line.</translate>''<br/><!-- GIDEROSMTD:Shape:lineTo --> |
− | [[Special:MyLanguage/Shape:moveTo|Shape:moveTo]] ''<translate>creates a new subpath with the given point</translate>''<br/> | + | [[Special:MyLanguage/Shape:moveTo|Shape:moveTo]] ''<translate>creates a new subpath with the given point</translate>''<br/><!-- GIDEROSMTD:Shape:moveTo --> |
− | [[Special:MyLanguage/Shape:setFillStyle|Shape:setFillStyle]] ''<translate>sets the fill style that Shape object uses for subsequent drawings</translate>''<br/> | + | [[Special:MyLanguage/Shape:setFillStyle|Shape:setFillStyle]] ''<translate>sets the fill style that Shape object uses for subsequent drawings</translate>''<br/><!-- GIDEROSMTD:Shape:setFillStyle --> |
− | [[Special:MyLanguage/Shape:setLineStyle|Shape:setLineStyle]] ''<translate>sets the line style that Shape object uses for subsequent drawings</translate>''<br/> | + | [[Special:MyLanguage/Shape:setLineStyle|Shape:setLineStyle]] ''<translate>sets the line style that Shape object uses for subsequent drawings</translate>''<br/><!-- GIDEROSMTD:Shape:setLineStyle --> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== <translate>Events</translate> === | === <translate>Events</translate> === | ||
=== <translate>Constants</translate> === | === <translate>Constants</translate> === | ||
− | [[Special:MyLanguage/Shape.EVEN_ODD|Shape.EVEN_ODD]]<br/> | + | [[Special:MyLanguage/Shape.EVEN_ODD|Shape.EVEN_ODD]]<br/><!-- GIDEROSCST:Shape.EVEN_ODD --> |
− | [[Special:MyLanguage/Shape.NONE|Shape.NONE]]<br/> | + | [[Special:MyLanguage/Shape.NONE|Shape.NONE]]<br/><!-- GIDEROSCST:Shape.NONE --> |
− | [[Special:MyLanguage/Shape.NON_ZERO|Shape.NON_ZERO]]<br/> | + | [[Special:MyLanguage/Shape.NON_ZERO|Shape.NON_ZERO]]<br/><!-- GIDEROSCST:Shape.NON_ZERO --> |
− | [[Special:MyLanguage/Shape.SOLID|Shape.SOLID]]<br/> | + | [[Special:MyLanguage/Shape.SOLID|Shape.SOLID]]<br/><!-- GIDEROSCST:Shape.SOLID --> |
− | [[Special:MyLanguage/Shape.TEXTURE|Shape.TEXTURE]]<br/> | + | [[Special:MyLanguage/Shape.TEXTURE|Shape.TEXTURE]]<br/><!-- GIDEROSCST:Shape.TEXTURE --> |
|} | |} |
Revision as of 14:54, 31 August 2018
Supported platforms:
Available since: Gideros 2011.6
Inherits from: Sprite
Description
The Shape class is used create and display vector graphics.
Examples
Drawing red square
local shape = Shape.new()
shape:setFillStyle(Shape.SOLID, 0xff0000, 1)
shape:beginPath()
shape:moveTo(0,0)
shape:lineTo(100, 0)
shape:lineTo(100, 100)
shape:lineTo(0, 100)
shape:lineTo(0, 0)
shape:endPath()
shape:setPosition(0, 150)
stage:addChild(shape)
MethodsShape.new creates a new Shape object |
EventsConstantsShape.EVEN_ODD |