BufferParameters.withQS_ECS constructor

BufferParameters.withQS_ECS(
  1. int quadrantSegments,
  2. int endCapStyle
)

Creates a set of parameters with the given quadrantSegments and endCapStyle values.

@param quadrantSegments the number of quadrant segments to use @param endCapStyle the end cap style to use

Implementation

BufferParameters.withQS_ECS(int quadrantSegments, int endCapStyle) {
  setQuadrantSegments(quadrantSegments);
  setEndCapStyle(endCapStyle);
}