Package com.massifmaps.styles
Class LineJoinType
java.lang.Object
com.massifmaps.styles.LineJoinType
Possible styles in which line segments are connected with each other.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interfaceThe accepted values of this constant namespace. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intLine segments are connected with each other using bevel (straight line) connectors.static final intLine segments are connected with each other using miter connections.static final intLine segments are not connected with each other.static final intLine segments are connected with each other using circle sectors resulting in
round corners. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
LINE_JOIN_TYPE_NONE
public static final int LINE_JOIN_TYPE_NONELine segments are not connected with each other. The fastest and ugliest.- See Also:
-
LINE_JOIN_TYPE_MITER
public static final int LINE_JOIN_TYPE_MITERLine segments are connected with each other using miter connections. This is the preferred mode (fast and good looking generally).- See Also:
-
LINE_JOIN_TYPE_BEVEL
public static final int LINE_JOIN_TYPE_BEVELLine segments are connected with each other using bevel (straight line) connectors. Fast
but results in an unnatural line.- See Also:
-
LINE_JOIN_TYPE_ROUND
public static final int LINE_JOIN_TYPE_ROUNDLine segments are connected with each other using circle sectors resulting in
round corners. Slowest and prettiest.- See Also:
-
-
Constructor Details
-
LineJoinType
public LineJoinType()
-