Difference between revisions of "X Media:drawLine"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Draws a line from x0,y0 to x1,y1 with provided settings. | Draws a line from x0,y0 to x1,y1 with provided settings. | ||
− | < | + | <syntaxhighlight lang="lua"> |
Media:drawLine(x0, y0, x1, y1, hexColor, alpha, blendAlpha) | Media:drawLine(x0, y0, x1, y1, hexColor, alpha, blendAlpha) | ||
</source> | </source> |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2016.1
Class: Media
Description
Draws a line from x0,y0 to x1,y1 with provided settings. <syntaxhighlight lang="lua"> Media:drawLine(x0, y0, x1, y1, hexColor, alpha, blendAlpha) </source>
Parameters
x0: (number) starting x coordinate of the line
y0: (number) starting y coordinate of the line
x1: (number) ending x coordinate of the line
y1: (number) ending y coordinate of the line
hexColor: (hexadecimal) color in hexadecimal
alpha: (number) alpha value
blendAlpha: (number) blending alpha value
- X Media:copy
- X Media:crop
- X Media:drawFill
- X Media:drawImage
- X Media:drawLine
- X Media:drawText
- X Media:flipHorizontal
- X Media:flipVertical
- X Media:floodFill
- X Media:getHeight
- X Media:getPath
- X Media:getPixel
- X Media:getRotation
- X Media:getWidth
- X Media:resize
- X Media:resizeHeight
- X Media:resizeWidth
- X Media:save
- X Media:setPixel
- X Media:setRotation
- X Media:trim