Draw continuous curves command

绘制连续曲线命令

实现

构造函数

属性

访问器

方法

构造函数

属性

lineColor: any

Line color

线段颜色

lineWidth: number = 0

(Optional) Line width

(可选)线段宽度

points: number[]

Collection of points for the line segments. Format: [x1,y1,x2,y2,x3,y3...]

线段的点集合。格式:[x1,y1,x2,y2,x3,y3...]

x: number

X-axis position to start drawing

开始绘制的X轴位置

y: number

Y-axis position to start drawing

开始绘制的Y轴位置

ID: string = "DrawLines"

Identifier for the DrawLinesCmd

绘制连续曲线命令的标识符

访问器

方法

  • 参数

    • context: Context

      The rendering context

    • gx: number

      Global X offset

    • gy: number

      Global Y offset

    返回 void

    Execute the draw continuous lines command

    执行绘制连续曲线命令

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • points: any[]

      Collection of points for the line segments

    • lineColor: any

      Line color

    • lineWidth: number

      Line width

    返回 DrawLinesCmd

    A DrawLinesCmd instance

    Create a DrawLinesCmd instance

    创建一个绘制连续曲线命令实例