Draw vector graphics based on the path

根据路径绘制矢量图形

实现

构造函数

属性

访问器

方法

构造函数

属性

brush: any

(Optional) Brush definition, supports the following settings: {fillStyle:"#FF0000"}.

(可选)刷子定义,支持以下设置:{fillStyle:"#FF0000"}。

paths: any[]

Path collection. Paths support the following formats: [["moveTo",x,y],["lineTo",x,y],["arcTo",x1,y1,x2,y2,r],["closePath"]].

路径集合,路径支持以下格式:[["moveTo",x,y],["lineTo",x,y],["arcTo",x1,y1,x2,y2,r],["closePath"]]。

pen: any

(Optional) Pen definition, supports the following settings: {strokeStyle,lineWidth,lineJoin:"bevel|round|miter",lineCap:"butt|round|square",miterLimit}.

(可选)画笔定义,支持以下设置:{strokeStyle,lineWidth,lineJoin:"bevel|round|miter",lineCap:"butt|round|square",miterLimit}。

x: number

The X-axis position to start drawing.

开始绘制的 X 轴位置。

y: number

The Y-axis position to start drawing.

开始绘制的 Y 轴位置。

ID: string = "DrawPath"

Identifier for the DrawPathCmd

根据路径绘制矢量图形命令的标识符

访问器

方法

  • 参数

    • x: number

      The X-axis position to start drawing

    • y: number

      The Y-axis position to start drawing

    • paths: any[]

      Path collection

    • brush: any

      Brush definition

    • pen: any

      Pen definition

    返回 DrawPathCmd

    DrawPathCmd instance

    Create a DrawPathCmd instance

    创建一个根据路径绘制矢量图形命令实例