BMFLineJoinType enum Null safety

line拐角处理方式枚举(不支持虚线)

Inheritance
  • Object
  • Enum
  • BMFLineJoinType

Constructors

BMFLineJoinType()
const

Values

LineJoinBevel → const BMFLineJoinType

平角衔接

const BMFLineJoinType(0)
LineJoinMiter → const BMFLineJoinType

尖角衔接(尖角过长(大于线宽)按平角处理)

const BMFLineJoinType(1)
LineJoinRound → const BMFLineJoinType

圆⻆角衔接

const BMFLineJoinType(2)
LineJoinBerzier → const BMFLineJoinType

贝塞尔平滑衔接(仅支持多纹理和多颜色的polyline绘制) 此衔接不可以与kBMKLineCapRound配合使用

const BMFLineJoinType(3)

Properties

hashCode → int
The hash code for this object.
read-only, inherited
index → int
A numeric identifier for the enumerated value.
read-only, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Constants

values → const List<BMFLineJoinType>
A constant List of the values in this enum, in order of their declaration.
[LineJoinBevel, LineJoinMiter, LineJoinRound, LineJoinBerzier]