egret.JointStyle
包 egret
类 public class JointStyle
JointStyle 类是指定要在绘制线条中使用的联接点样式的常量值枚举。提供的这些常量用作 egret.Graphics.lineStyle() 方法的 joints 参数中的值。
公共属性
属性 |
---|
BEVEL : string [静态]在 egret.Graphics.lineStyle() 方法的 joints 参数中指定斜角连接 |
MITER : string [静态]在 egret.Graphics.lineStyle() 方法的 joints 参数中指定尖角连接 |
ROUND : string [静态]在 egret.Graphics.lineStyle() 方法的 joints 参数中指定圆角连接 |
属性详细信息
BEVEL
BEVEL : string = "bevel"
- 支持版本:Egret 2.5
- 运行平台:Web,Native
在 egret.Graphics.lineStyle() 方法的 joints 参数中指定斜角连接。
MITER
MITER : string = "miter"
- 支持版本:Egret 2.5
- 运行平台:Web,Native
在 egret.Graphics.lineStyle() 方法的 joints 参数中指定尖角连接。
ROUND
ROUND : string = "round"
- 支持版本:Egret 2.5
- 运行平台:Web,Native
在 egret.Graphics.lineStyle() 方法的 joints 参数中指定圆角连接。