setJoinStyle method

void setJoinStyle(
  1. int joinStyle
)

Sets the join style for outside (reflex) corners between line segments. Allowable values are {@link #JOIN_ROUND} (which is the default), {@link #JOIN_MITRE} and {link JOIN_BEVEL}.

@param joinStyle the code for the join style

Implementation

void setJoinStyle(int joinStyle) {
  this.joinStyle = joinStyle;
}