Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IPathArc

圆弧形路径.

Examples:

var arc: IPathArc = { type: 'arc', origin: [0, 0], radius: 7, startAngle: 0, endAngle: 45 };   //typescript
var arc = { type: 'arc', origin: [0, 0], radius: 7, startAngle: 0, endAngle: 45 };   //javascript

Hierarchy

Implemented by

Index

Properties

Optional data

属性数据.

endAngle

endAngle: number

以(逆时针)方向结束绘制弧的角度(以度为单位)。如果超过 360 度,则可能小于起始角度.

Optional layer

layer: string

图层.

origin

origin: IPoint

基点.

radius

radius: number

The radius of the circle.

startAngle

startAngle: number

开始绘制圆弧的角度(以度为单位), 在(逆时针)方向.

type

type: string

路径的类型,例如“线”、“圆”或“圆弧”。这些字符串在路径类型中枚举.

Generated using TypeDoc