setMitreLimit method

void setMitreLimit(
  1. double mitreLimit
)

Sets the limit on the mitre ratio used for very sharp corners. The mitre ratio is the ratio of the distance from the corner to the end of the mitred offset corner. When two line segments meet at a sharp angle, a miter join will extend far beyond the original geometry. (and in the extreme case will be infinitely far.) To prevent unreasonable geometry, the mitre limit allows controlling the maximum length of the join corner. Corners with a ratio which exceed the limit will be beveled.

@param mitreLimit the mitre ratio limit

Implementation

void setMitreLimit(double mitreLimit) {
  this.mitreLimit = mitreLimit;
}