Searched refs:miterlimit (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DBasicStroke.java60 * 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; field in class:BasicStroke
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, argument
198 if (miterlimit < 1.0f) {
224 this.miterlimit = miterlimit;
246 BasicStroke(float width, int cap, int join, float miterlimit) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java179 * @param miterlimit the miter limit as per {@code BasicStroke}
189 float miterlimit,
402 float miterlimit,
411 "miter = "+miterlimit+", "+
415 width, caps, join, miterlimit,
185 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
398 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesRenderingEngine.java53 * @param miterlimit the miter limit as per {@code BasicStroke}
63 float miterlimit,
75 miterlimit,
247 float miterlimit,
358 pc2d = new Stroker(pc2d, width, caps, join, miterlimit);
59 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
241 strokeTo(Shape src, AffineTransform at, float width, NormMode normalize, int caps, int join, float miterlimit, float dashes[], float dashphase, PathConsumer2D pc2d) argument
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java82 float miterlimit,
96 stroker.setCorners(RasterizerCorners[join], miterlimit);
78 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphImages.m162 CGFloat miterlimit = CGContextGetMiterLimit(cgRef);
164 fprintf(stderr, " [linewidth: %f] [linecap: %d] [linejoin: %d] [miterlimit: %f] [dashcount: %lu]\n",
165 linewidth, linecap, linejoin, miterlimit, (unsigned long)dashcount);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.m729 CGFloat miterlimit = javaFloatGraphicsStates[sun_java2d_OSXSurfaceData_kStrokeLimitIndex];
774 CGContextSetMiterLimit(cgRef, miterlimit);

Completed in 57 milliseconds