Draw a polygon

绘制多边形

实现

构造函数

属性

fillColor: any

The fill color

填充颜色

lineColor: any

(Optional) The border color

(可选)边框颜色

lineWidth: number

(Optional) The width of the border.

(可选)边框宽度。

points: number[]

The collection of points for the polygon.

多边形的点集合。

x: number

The X-axis position to start drawing.

开始绘制的 X 轴位置。

y: number

The Y-axis position to start drawing.

开始绘制的 Y 轴位置。

ID: string = "DrawPoly"

Identifier for the DrawPolyCmd

绘制多边形命令的标识符

访问器

方法

  • 参数

    • context: Context

      The rendering context

    • gx: number

      Global X offset

    • gy: number

      Global Y offset

    返回 void

    Execute the drawing polygon command

    执行绘制多边形命令

  • 参数

    • x: number

      The X-axis position to start drawing

    • y: number

      The Y-axis position to start drawing

    • points: any[]

      The collection of points for the polygon

    • fillColor: any

      The fill color

    • lineColor: any

      The border color

    • lineWidth: number

      The width of the border

    返回 DrawPolyCmd

    DrawPolyCmd instance

    Create a DrawPolyCmd instance

    创建绘制多边形命令的实例