Lines Matching refs:miterlimit
60 * width is greater than the miterlimit value. The miter length is
65 * default miterlimit value of 10.0f causes all angles less than
156 float miterlimit;
171 * @param miterlimit the limit to trim the miter join. The miterlimit
178 * @throws IllegalArgumentException if <code>miterlimit</code> is less
189 public BasicStroke(float width, int cap, int join, float miterlimit,
198 if (miterlimit < 1.0f) {
224 this.miterlimit = miterlimit;
237 * @param miterlimit the limit to trim the miter join
241 * @throws IllegalArgumentException if <code>miterlimit</code> is less
246 public BasicStroke(float width, int cap, int join, float miterlimit) {
247 this(width, cap, join, miterlimit, null, 0.0f);
252 * attributes. The <code>miterlimit</code> parameter is
299 return re.createStrokedShape(s, width, cap, join, miterlimit,
340 return miterlimit;
383 hash = hash * 31 + Float.floatToIntBits(miterlimit);
426 if (miterlimit != bs.miterlimit) {