Lines Matching defs:join

58  * <dd>The limit to trim a line join that has a JOIN_MITER decoration.
59 * A line join is trimmed when the ratio of miter length to stroke
67 * the decoration of the line join to bevel.
154 int join;
170 * @param join the decoration applied where path segments meet
171 * @param miterlimit the limit to trim the miter join. The miterlimit
179 * than 1 and <code>join</code> is JOIN_MITER
180 * @throws IllegalArgumentException if <code>join</code> is not
189 public BasicStroke(float width, int cap, int join, float miterlimit,
197 if (join == JOIN_MITER) {
201 } else if (join != JOIN_ROUND && join != JOIN_BEVEL) {
202 throw new IllegalArgumentException("illegal line join value");
223 this.join = join;
236 * @param join the decoration applied where path segments meet
237 * @param miterlimit the limit to trim the miter join
242 * than 1 and <code>join</code> is JOIN_MITER
243 * @throws IllegalArgumentException if <code>join</code> is not
246 public BasicStroke(float width, int cap, int join, float miterlimit) {
247 this(width, cap, join, miterlimit, null, 0.0f);
257 * @param join the decoration applied where path segments meet
261 * @throws IllegalArgumentException if <code>join</code> is not
264 public BasicStroke(float width, int cap, int join) {
265 this(width, cap, join, 10.0f, null, 0.0f);
270 * line width and with default values for the cap and join
299 return re.createStrokedShape(s, width, cap, join, miterlimit,
326 * Returns the line join style.
327 * @return the line join style of the <code>BasicStroke</code> as one
329 * join styles.
332 return join;
381 hash = hash * 31 + join;
400 * its width, join, cap, miter limit, dash, and dash phase attributes with
404 * @return <code>true</code> if the width, join, cap, miter limit, dash, and
418 if (join != bs.join) {