|
Java example source code file (BasicStroke.java)
The BasicStroke.java Java example source code
/*
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package java.awt;
import java.beans.ConstructorProperties;
import java.lang.annotation.Native;
/**
* The <code>BasicStroke class defines a basic set of rendering
* attributes for the outlines of graphics primitives, which are rendered
* with a {@link Graphics2D} object that has its Stroke attribute set to
* this <code>BasicStroke.
* The rendering attributes defined by <code>BasicStroke describe
* the shape of the mark made by a pen drawn along the outline of a
* {@link Shape} and the decorations applied at the ends and joins of
* path segments of the <code>Shape.
* These rendering attributes include:
* <dl>
* <dt>width
* <dd>The pen width, measured perpendicularly to the pen trajectory.
* <dt>end caps
* <dd>The decoration applied to the ends of unclosed subpaths and
* dash segments. Subpaths that start and end on the same point are
* still considered unclosed if they do not have a CLOSE segment.
* See {@link java.awt.geom.PathIterator#SEG_CLOSE SEG_CLOSE}
* for more information on the CLOSE segment.
* The three different decorations are: {@link #CAP_BUTT},
* {@link #CAP_ROUND}, and {@link #CAP_SQUARE}.
* <dt>line joins
* <dd>The decoration applied at the intersection of two path segments
* and at the intersection of the endpoints of a subpath that is closed
* using {@link java.awt.geom.PathIterator#SEG_CLOSE SEG_CLOSE}.
* The three different decorations are: {@link #JOIN_BEVEL},
* {@link #JOIN_MITER}, and {@link #JOIN_ROUND}.
* <dt>miter limit
* <dd>The limit to trim a line join that has a JOIN_MITER decoration.
* A line join is trimmed when the ratio of miter length to stroke
* width is greater than the miterlimit value. The miter length is
* the diagonal length of the miter, which is the distance between
* the inside corner and the outside corner of the intersection.
* The smaller the angle formed by two line segments, the longer
* the miter length and the sharper the angle of intersection. The
* default miterlimit value of 10.0f causes all angles less than
* 11 degrees to be trimmed. Trimming miters converts
* the decoration of the line join to bevel.
* <dt>dash attributes
* <dd>The definition of how to make a dash pattern by alternating
* between opaque and transparent sections.
* </dl>
* All attributes that specify measurements and distances controlling
* the shape of the returned outline are measured in the same
* coordinate system as the original unstroked <code>Shape
* argument. When a <code>Graphics2D object uses a
* <code>Stroke object to redefine a path during the execution
* of one of its <code>draw methods, the geometry is supplied
* in its original form before the <code>Graphics2D transform
* attribute is applied. Therefore, attributes such as the pen width
* are interpreted in the user space coordinate system of the
* <code>Graphics2D object and are subject to the scaling and
* shearing effects of the user-space-to-device-space transform in that
* particular <code>Graphics2D.
* For example, the width of a rendered shape's outline is determined
* not only by the width attribute of this <code>BasicStroke,
* but also by the transform attribute of the
* <code>Graphics2D object. Consider this code:
* <blockquote>
* // sets the Graphics2D object's Transform attribute
* g2d.scale(10, 10);
* // sets the Graphics2D object's Stroke attribute
* g2d.setStroke(new BasicStroke(1.5f));
* </tt>
* Assuming there are no other scaling transforms added to the
* <code>Graphics2D object, the resulting line
* will be approximately 15 pixels wide.
* As the example code demonstrates, a floating-point line
* offers better precision, especially when large transforms are
* used with a <code>Graphics2D object.
* When a line is diagonal, the exact width depends on how the
* rendering pipeline chooses which pixels to fill as it traces the
* theoretical widened outline. The choice of which pixels to turn
* on is affected by the antialiasing attribute because the
* antialiasing rendering pipeline can choose to color
* partially-covered pixels.
* <p>
* For more information on the user space coordinate system and the
* rendering process, see the <code>Graphics2D class comments.
* @see Graphics2D
* @author Jim Graham
*/
public class BasicStroke implements Stroke {
/**
* Joins path segments by extending their outside edges until
* they meet.
*/
@Native public final static int JOIN_MITER = 0;
/**
* Joins path segments by rounding off the corner at a radius
* of half the line width.
*/
@Native public final static int JOIN_ROUND = 1;
/**
* Joins path segments by connecting the outer corners of their
* wide outlines with a straight segment.
*/
@Native public final static int JOIN_BEVEL = 2;
/**
* Ends unclosed subpaths and dash segments with no added
* decoration.
*/
@Native public final static int CAP_BUTT = 0;
/**
* Ends unclosed subpaths and dash segments with a round
* decoration that has a radius equal to half of the width
* of the pen.
*/
@Native public final static int CAP_ROUND = 1;
/**
* Ends unclosed subpaths and dash segments with a square
* projection that extends beyond the end of the segment
* to a distance equal to half of the line width.
*/
@Native public final static int CAP_SQUARE = 2;
float width;
int join;
int cap;
float miterlimit;
float dash[];
float dash_phase;
/**
* Constructs a new <code>BasicStroke with the specified
* attributes.
* @param width the width of this <code>BasicStroke. The
* width must be greater than or equal to 0.0f. If width is
* set to 0.0f, the stroke is rendered as the thinnest
* possible line for the target device and the antialias
* hint setting.
* @param cap the decoration of the ends of a <code>BasicStroke
* @param join the decoration applied where path segments meet
* @param miterlimit the limit to trim the miter join. The miterlimit
* must be greater than or equal to 1.0f.
* @param dash the array representing the dashing pattern
* @param dash_phase the offset to start the dashing pattern
* @throws IllegalArgumentException if <code>width is negative
* @throws IllegalArgumentException if <code>cap is not either
* CAP_BUTT, CAP_ROUND or CAP_SQUARE
* @throws IllegalArgumentException if <code>miterlimit is less
* than 1 and <code>join is JOIN_MITER
* @throws IllegalArgumentException if <code>join is not
* either JOIN_ROUND, JOIN_BEVEL, or JOIN_MITER
* @throws IllegalArgumentException if <code>dash_phase
* is negative and <code>dash is not
Other Java examples (source code examples)Here is a short list of links related to this Java BasicStroke.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.