BufferParameters.withQS_ECS_JS_ML constructor

BufferParameters.withQS_ECS_JS_ML(
  1. int quadrantSegments,
  2. int endCapStyle,
  3. int joinStyle,
  4. double mitreLimit,
)

Creates a set of parameters with the given parameter values.

@param quadrantSegments the number of quadrant segments to use @param endCapStyle the end cap style to use @param joinStyle the join style to use @param mitreLimit the mitre limit to use

Implementation

BufferParameters.withQS_ECS_JS_ML(
    int quadrantSegments, int endCapStyle, int joinStyle, double mitreLimit) {
  setQuadrantSegments(quadrantSegments);
  setEndCapStyle(endCapStyle);
  setJoinStyle(joinStyle);
  setMitreLimit(mitreLimit);
}