FileDocCategorySizeDatePackage
Path2D.javaAPI DocJava SE 6 API99314Tue Jun 10 00:25:26 BST 2008java.awt.geom

Path2D

public abstract class Path2D extends Object implements Shape, Cloneable
The {@code Path2D} class provides a simple, yet flexible shape which represents an arbitrary geometric path. It can fully represent any path which can be iterated by the {@link PathIterator} interface including all of its segment types and winding rules and it implements all of the basic hit testing methods of the {@link Shape} interface.

Use {@link Path2D.Float} when dealing with data that can be represented and used with floating point precision. Use {@link Path2D.Double} for data that requires the accuracy or range of double precision.

{@code Path2D} provides exactly those facilities required for basic construction and management of a geometric path and implementation of the above interfaces with little added interpretation. If it is useful to manipulate the interiors of closed geometric shapes beyond simple hit testing then the {@link Area} class provides additional capabilities specifically targeted at closed figures. While both classes nominally implement the {@code Shape} interface, they differ in purpose and together they provide two useful views of a geometric shape where {@code Path2D} deals primarily with a trajectory formed by path segments and {@code Area} deals more with interpretation and manipulation of enclosed regions of 2D geometric space.

The {@link PathIterator} interface has more detailed descriptions of the types of segments that make up a path and the winding rules that control how to determine which regions are inside or outside the path.

version
1.4, 04/19/06
author
Jim Graham
since
1.6

Fields Summary
public static final int
WIND_EVEN_ODD
An even-odd winding rule for determining the interior of a path.
public static final int
WIND_NON_ZERO
A non-zero winding rule for determining the interior of a path.
private static final byte
SEG_MOVETO
private static final byte
SEG_LINETO
private static final byte
SEG_QUADTO
private static final byte
SEG_CUBICTO
private static final byte
SEG_CLOSE
transient byte[]
pointTypes
transient int
numTypes
transient int
numCoords
transient int
windingRule
static final int
INIT_SIZE
static final int
EXPAND_MAX
private static final byte
SERIAL_STORAGE_FLT_ARRAY
private static final byte
SERIAL_STORAGE_DBL_ARRAY
private static final byte
SERIAL_SEG_FLT_MOVETO
private static final byte
SERIAL_SEG_FLT_LINETO
private static final byte
SERIAL_SEG_FLT_QUADTO
private static final byte
SERIAL_SEG_FLT_CUBICTO
private static final byte
SERIAL_SEG_DBL_MOVETO
private static final byte
SERIAL_SEG_DBL_LINETO
private static final byte
SERIAL_SEG_DBL_QUADTO
private static final byte
SERIAL_SEG_DBL_CUBICTO
private static final byte
SERIAL_SEG_CLOSE
private static final byte
SERIAL_PATH_END
Constructors Summary
Path2D()
Constructs a new empty {@code Path2D} object. It is assumed that the package sibling subclass that is defaulting to this constructor will fill in all values.

since
1.6


                                     
    /* private protected */
     
    
Path2D(int rule, int initialTypes)
Constructs a new {@code Path2D} object from the given specified initial values. This method is only intended for internal use and should not be made public if the other constructors for this class are ever exposed.

param
rule the winding rule
param
initialTypes the size to make the initial array to store the path segment types
since
1.6

        setWindingRule(rule);
        this.pointTypes = new byte[initialTypes];
    
Methods Summary
public final voidappend(java.awt.Shape s, boolean connect)
Appends the geometry of the specified {@code Shape} object to the path, possibly connecting the new geometry to the existing path segments with a line segment. If the {@code connect} parameter is {@code true} and the path is not empty then any initial {@code moveTo} in the geometry of the appended {@code Shape} is turned into a {@code lineTo} segment. If the destination coordinates of such a connecting {@code lineTo} segment match the ending coordinates of a currently open subpath then the segment is omitted as superfluous. The winding rule of the specified {@code Shape} is ignored and the appended geometry is governed by the winding rule specified for this path.

param
s the {@code Shape} whose geometry is appended to this path
param
connect a boolean to control whether or not to turn an initial {@code moveTo} segment into a {@code lineTo} segment to connect the new geometry to the existing path
since
1.6

        append(s.getPathIterator(null), connect);
    
public abstract voidappend(java.awt.geom.PathIterator pi, boolean connect)
Appends the geometry of the specified {@link PathIterator} object to the path, possibly connecting the new geometry to the existing path segments with a line segment. If the {@code connect} parameter is {@code true} and the path is not empty then any initial {@code moveTo} in the geometry of the appended {@code Shape} is turned into a {@code lineTo} segment. If the destination coordinates of such a connecting {@code lineTo} segment match the ending coordinates of a currently open subpath then the segment is omitted as superfluous. The winding rule of the specified {@code Shape} is ignored and the appended geometry is governed by the winding rule specified for this path.

param
pi the {@code PathIterator} whose geometry is appended to this path
param
connect a boolean to control whether or not to turn an initial {@code moveTo} segment into a {@code lineTo} segment to connect the new geometry to the existing path
since
1.6

abstract voidappend(float x, float y)

abstract voidappend(double x, double y)

public abstract java.lang.Objectclone()
Creates a new object of the same class as this object.

return
a clone of this instance.
exception
OutOfMemoryError if there is not enough memory.
see
java.lang.Cloneable
since
1.6

abstract double[]cloneCoordsDouble(java.awt.geom.AffineTransform at)

abstract float[]cloneCoordsFloat(java.awt.geom.AffineTransform at)

public final synchronized voidclosePath()
Closes the current subpath by drawing a straight line back to the coordinates of the last {@code moveTo}. If the path is already closed then this method has no effect.

since
1.6

	if (numTypes == 0 || pointTypes[numTypes - 1] != SEG_CLOSE) {
	    needRoom(true, 0);
	    pointTypes[numTypes++] = SEG_CLOSE;
	}
    
public static booleancontains(java.awt.geom.PathIterator pi, double x, double y)
Tests if the specified coordinates are inside the closed boundary of the specified {@link PathIterator}.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#contains(double, double)} method.

param
pi the specified {@code PathIterator}
param
x the specified X coordinate
param
y the specified Y coordinate
return
{@code true} if the specified coordinates are inside the specified {@code PathIterator}; {@code false} otherwise
since
1.6

        if (x * 0.0 + y * 0.0 == 0.0) {
            /* N * 0.0 is 0.0 only if N is finite.
             * Here we know that both x and y are finite.
             */
            int mask = (pi.getWindingRule() == WIND_NON_ZERO ? -1 : 1);
            int cross = Curve.pointCrossingsForPath(pi, x, y);
            return ((cross & mask) != 0);
        } else {
            /* Either x or y was infinite or NaN.
             * A NaN always produces a negative response to any test
             * and Infinity values cannot be "inside" any path so
             * they should return false as well.
             */
            return false;
        }
    
public static booleancontains(java.awt.geom.PathIterator pi, java.awt.geom.Point2D p)
Tests if the specified {@link Point2D} is inside the closed boundary of the specified {@link PathIterator}.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#contains(Point2D)} method.

param
pi the specified {@code PathIterator}
param
p the specified {@code Point2D}
return
{@code true} if the specified coordinates are inside the specified {@code PathIterator}; {@code false} otherwise
since
1.6

        return contains(pi, p.getX(), p.getY());
    
public final booleancontains(double x, double y)
{@inheritDoc}

since
1.6

        if (x * 0.0 + y * 0.0 == 0.0) {
            /* N * 0.0 is 0.0 only if N is finite.
             * Here we know that both x and y are finite.
             */
            if (numTypes < 2) {
                return false;
            }
            int mask = (windingRule == WIND_NON_ZERO ? -1 : 1);
            return ((pointCrossings(x, y) & mask) != 0);
        } else {
            /* Either x or y was infinite or NaN.
             * A NaN always produces a negative response to any test
             * and Infinity values cannot be "inside" any path so
             * they should return false as well.
             */
            return false;
        }
    
public final booleancontains(java.awt.geom.Point2D p)
{@inheritDoc}

since
1.6

	return contains(p.getX(), p.getY());
    
public static booleancontains(java.awt.geom.PathIterator pi, double x, double y, double w, double h)
Tests if the specified rectangular area is entirely inside the closed boundary of the specified {@link PathIterator}.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#contains(double, double, double, double)} method.

This method object may conservatively return false in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such segments could lie entirely within the interior of the path if they are part of a path with a {@link #WIND_NON_ZERO} winding rule or if the segments are retraced in the reverse direction such that the two sets of segments cancel each other out without any exterior area falling between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

param
pi the specified {@code PathIterator}
param
x the specified X coordinate
param
y the specified Y coordinate
param
w the width of the specified rectangular area
param
h the height of the specified rectangular area
return
{@code true} if the specified {@code PathIterator} contains the specified rectangluar area; {@code false} otherwise.
since
1.6

        if (java.lang.Double.isNaN(x+w) || java.lang.Double.isNaN(y+h)) {
            /* [xy]+[wh] is NaN if any of those values are NaN,
             * or if adding the two together would produce NaN
             * by virtue of adding opposing Infinte values.
             * Since we need to add them below, their sum must
             * not be NaN.
             * We return false because NaN always produces a
             * negative response to tests
             */
            return false;
        }
        if (w <= 0 || h <= 0) {
            return false;
        }
        int mask = (pi.getWindingRule() == WIND_NON_ZERO ? -1 : 2);
	int crossings = Curve.rectCrossingsForPath(pi, x, y, x+w, y+h);
	return (crossings != Curve.RECT_INTERSECTS &&
                (crossings & mask) != 0);
    
public static booleancontains(java.awt.geom.PathIterator pi, java.awt.geom.Rectangle2D r)
Tests if the specified {@link Rectangle2D} is entirely inside the closed boundary of the specified {@link PathIterator}.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#contains(Rectangle2D)} method.

This method object may conservatively return false in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such segments could lie entirely within the interior of the path if they are part of a path with a {@link #WIND_NON_ZERO} winding rule or if the segments are retraced in the reverse direction such that the two sets of segments cancel each other out without any exterior area falling between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

param
pi the specified {@code PathIterator}
param
r a specified {@code Rectangle2D}
return
{@code true} if the specified {@code PathIterator} contains the specified {@code Rectangle2D}; {@code false} otherwise.
since
1.6

        return contains(pi, r.getX(), r.getY(), r.getWidth(), r.getHeight());
    
public final booleancontains(double x, double y, double w, double h)
{@inheritDoc}

This method object may conservatively return false in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such segments could lie entirely within the interior of the path if they are part of a path with a {@link #WIND_NON_ZERO} winding rule or if the segments are retraced in the reverse direction such that the two sets of segments cancel each other out without any exterior area falling between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

since
1.6

        if (java.lang.Double.isNaN(x+w) || java.lang.Double.isNaN(y+h)) {
            /* [xy]+[wh] is NaN if any of those values are NaN,
             * or if adding the two together would produce NaN
             * by virtue of adding opposing Infinte values.
             * Since we need to add them below, their sum must
             * not be NaN.
             * We return false because NaN always produces a
             * negative response to tests
             */
            return false;
        }
        if (w <= 0 || h <= 0) {
            return false;
        }
        int mask = (windingRule == WIND_NON_ZERO ? -1 : 2);
	int crossings = rectCrossings(x, y, x+w, y+h);
	return (crossings != Curve.RECT_INTERSECTS &&
                (crossings & mask) != 0);
    
public final booleancontains(java.awt.geom.Rectangle2D r)
{@inheritDoc}

This method object may conservatively return false in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such segments could lie entirely within the interior of the path if they are part of a path with a {@link #WIND_NON_ZERO} winding rule or if the segments are retraced in the reverse direction such that the two sets of segments cancel each other out without any exterior area falling between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

since
1.6

	return contains(r.getX(), r.getY(), r.getWidth(), r.getHeight());
    
public final synchronized java.awt.ShapecreateTransformedShape(java.awt.geom.AffineTransform at)
Returns a new {@code Shape} representing a transformed version of this {@code Path2D}. Note that the exact type and coordinate precision of the return value is not specified for this method. The method will return a Shape that contains no less precision for the transformed geometry than this {@code Path2D} currently maintains, but it may contain no more precision either. If the tradeoff of precision vs. storage size in the result is important then the convenience constructors in the {@link Path2D.Float#Path2D.Float(Shape, AffineTransform) Path2D.Float} and {@link Path2D.Double#Path2D.Double(Shape, AffineTransform) Path2D.Double} subclasses should be used to make the choice explicit.

param
at the {@code AffineTransform} used to transform a new {@code Shape}.
return
a new {@code Shape}, transformed with the specified {@code AffineTransform}.
since
1.6

        Path2D p2d = (Path2D) clone();
        if (at != null) {
            p2d.transform(at);
        }
        return p2d;
    
public abstract voidcurveTo(double x1, double y1, double x2, double y2, double x3, double y3)
Adds a curved segment, defined by three new points, to the path by drawing a Bézier curve that intersects both the current coordinates and the specified coordinates {@code (x3,y3)}, using the specified points {@code (x1,y1)} and {@code (x2,y2)} as Bézier control points. All coordinates are specified in double precision.

param
x1 the X coordinate of the first Bézier control point
param
y1 the Y coordinate of the first Bézier control point
param
x2 the X coordinate of the second Bézier control point
param
y2 the Y coordinate of the second Bézier control point
param
x3 the X coordinate of the final end point
param
y3 the Y coordinate of the final end point
since
1.6

public final java.awt.RectanglegetBounds()
{@inheritDoc}

since
1.6

	return getBounds2D().getBounds();
    
public final synchronized java.awt.geom.Point2DgetCurrentPoint()
Returns the coordinates most recently added to the end of the path as a {@link Point2D} object.

return
a {@code Point2D} object containing the ending coordinates of the path or {@code null} if there are no points in the path.
since
1.6

	int index = numCoords;
	if (numTypes < 1 || index < 1) {
	    return null;
	}
	if (pointTypes[numTypes - 1] == SEG_CLOSE) {
	loop:
	    for (int i = numTypes - 2; i > 0; i--) {
		switch (pointTypes[i]) {
		case SEG_MOVETO:
		    break loop;
		case SEG_LINETO:
		    index -= 2;
		    break;
		case SEG_QUADTO:
		    index -= 4;
		    break;
		case SEG_CUBICTO:
		    index -= 6;
		    break;
		case SEG_CLOSE:
		    break;
		}
	    }
	}
	return getPoint(index - 2);
    
public java.awt.geom.PathIteratorgetPathIterator(java.awt.geom.AffineTransform at, double flatness)
{@inheritDoc}

The iterator for this class is not multi-threaded safe, which means that this {@code Path2D} class does not guarantee that modifications to the geometry of this {@code Path2D} object do not affect any iterations of that geometry that are already in process.

since
1.6

	return new FlatteningPathIterator(getPathIterator(at), flatness);
    
abstract java.awt.geom.Point2DgetPoint(int coordindex)

public final synchronized intgetWindingRule()
Returns the fill style winding rule.

return
an integer representing the current winding rule.
see
#WIND_EVEN_ODD
see
#WIND_NON_ZERO
see
#setWindingRule
since
1.6

        return windingRule;
    
public static booleanintersects(java.awt.geom.PathIterator pi, double x, double y, double w, double h)
Tests if the interior of the specified {@link PathIterator} intersects the interior of a specified set of rectangular coordinates.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#intersects(double, double, double, double)} method.

This method object may conservatively return true in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such a case may occur if some set of segments of the path are retraced in the reverse direction such that the two sets of segments cancel each other out without any interior area between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

param
pi the specified {@code PathIterator}
param
x the specified X coordinate
param
y the specified Y coordinate
param
w the width of the specified rectangular coordinates
param
h the height of the specified rectangular coordinates
return
{@code true} if the specified {@code PathIterator} and the interior of the specified set of rectangular coordinates intersect each other; {@code false} otherwise.
since
1.6

        if (java.lang.Double.isNaN(x+w) || java.lang.Double.isNaN(y+h)) {
            /* [xy]+[wh] is NaN if any of those values are NaN,
             * or if adding the two together would produce NaN
             * by virtue of adding opposing Infinte values.
             * Since we need to add them below, their sum must
             * not be NaN.
             * We return false because NaN always produces a
             * negative response to tests
             */
            return false;
        }
        if (w <= 0 || h <= 0) {
            return false;
        }
        int mask = (pi.getWindingRule() == WIND_NON_ZERO ? -1 : 2);
	int crossings = Curve.rectCrossingsForPath(pi, x, y, x+w, y+h);
	return (crossings == Curve.RECT_INTERSECTS ||
                (crossings & mask) != 0);
    
public static booleanintersects(java.awt.geom.PathIterator pi, java.awt.geom.Rectangle2D r)
Tests if the interior of the specified {@link PathIterator} intersects the interior of a specified {@link Rectangle2D}.

This method provides a basic facility for implementors of the {@link Shape} interface to implement support for the {@link Shape#intersects(Rectangle2D)} method.

This method object may conservatively return true in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such a case may occur if some set of segments of the path are retraced in the reverse direction such that the two sets of segments cancel each other out without any interior area between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

param
pi the specified {@code PathIterator}
param
r the specified {@code Rectangle2D}
return
{@code true} if the specified {@code PathIterator} and the interior of the specified {@code Rectangle2D} intersect each other; {@code false} otherwise.
since
1.6

        return intersects(pi, r.getX(), r.getY(), r.getWidth(), r.getHeight());
    
public final booleanintersects(double x, double y, double w, double h)
{@inheritDoc}

This method object may conservatively return true in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such a case may occur if some set of segments of the path are retraced in the reverse direction such that the two sets of segments cancel each other out without any interior area between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

since
1.6

        if (java.lang.Double.isNaN(x+w) || java.lang.Double.isNaN(y+h)) {
            /* [xy]+[wh] is NaN if any of those values are NaN,
             * or if adding the two together would produce NaN
             * by virtue of adding opposing Infinte values.
             * Since we need to add them below, their sum must
             * not be NaN.
             * We return false because NaN always produces a
             * negative response to tests
             */
            return false;
        }
        if (w <= 0 || h <= 0) {
            return false;
        }
        int mask = (windingRule == WIND_NON_ZERO ? -1 : 2);
	int crossings = rectCrossings(x, y, x+w, y+h);
	return (crossings == Curve.RECT_INTERSECTS ||
                (crossings & mask) != 0);
    
public final booleanintersects(java.awt.geom.Rectangle2D r)
{@inheritDoc}

This method object may conservatively return true in cases where the specified rectangular area intersects a segment of the path, but that segment does not represent a boundary between the interior and exterior of the path. Such a case may occur if some set of segments of the path are retraced in the reverse direction such that the two sets of segments cancel each other out without any interior area between them. To determine whether segments represent true boundaries of the interior of the path would require extensive calculations involving all of the segments of the path and the winding rule and are thus beyond the scope of this implementation.

since
1.6

	return intersects(r.getX(), r.getY(), r.getWidth(), r.getHeight());
    
public abstract voidlineTo(double x, double y)
Adds a point to the path by drawing a straight line from the current coordinates to the new specified coordinates specified in double precision.

param
x the specified X coordinate
param
y the specified Y coordinate
since
1.6

public abstract voidmoveTo(double x, double y)
Adds a point to the path by moving to the specified coordinates specified in double precision.

param
x the specified X coordinate
param
y the specified Y coordinate
since
1.6

abstract voidneedRoom(boolean needMove, int newCoords)

abstract intpointCrossings(double px, double py)

public abstract voidquadTo(double x1, double y1, double x2, double y2)
Adds a curved segment, defined by two new points, to the path by drawing a Quadratic curve that intersects both the current coordinates and the specified coordinates {@code (x2,y2)}, using the specified point {@code (x1,y1)} as a quadratic parametric control point. All coordinates are specified in double precision.

param
x1 the X coordinate of the quadratic control point
param
y1 the Y coordinate of the quadratic control point
param
x2 the X coordinate of the final end point
param
y2 the Y coordinate of the final end point
since
1.6

final voidreadObject(java.io.ObjectInputStream s, boolean storedbl)

        s.defaultReadObject();

        // The subclass calls this method with the storage type that
        // they want us to use (storedbl) so we ignore the storage
        // method hint from the stream.
        s.readByte();
        int nT = s.readInt();
        int nC = s.readInt();
        try {
            setWindingRule(s.readByte());
        } catch (IllegalArgumentException iae) {
            throw new java.io.InvalidObjectException(iae.getMessage());
        }

        pointTypes = new byte[(nT < 0) ? INIT_SIZE : nT];
        if (nC < 0) {
            nC = INIT_SIZE * 2;
        }
        if (storedbl) {
            ((Path2D.Double) this).doubleCoords = new double[nC];
        } else {
            ((Path2D.Float) this).floatCoords = new float[nC];
        }

    PATHDONE:
        for (int i = 0; nT < 0 || i < nT; i++) {
            boolean isdbl;
            int npoints;
            byte segtype;

            byte serialtype = s.readByte();
            switch (serialtype) {
            case SERIAL_SEG_FLT_MOVETO:
                isdbl = false;
                npoints = 1;
                segtype = SEG_MOVETO;
                break;
            case SERIAL_SEG_FLT_LINETO:
                isdbl = false;
                npoints = 1;
                segtype = SEG_LINETO;
                break;
            case SERIAL_SEG_FLT_QUADTO:
                isdbl = false;
                npoints = 2;
                segtype = SEG_QUADTO;
                break;
            case SERIAL_SEG_FLT_CUBICTO:
                isdbl = false;
                npoints = 3;
                segtype = SEG_CUBICTO;
                break;

            case SERIAL_SEG_DBL_MOVETO:
                isdbl = true;
                npoints = 1;
                segtype = SEG_MOVETO;
                break;
            case SERIAL_SEG_DBL_LINETO:
                isdbl = true;
                npoints = 1;
                segtype = SEG_LINETO;
                break;
            case SERIAL_SEG_DBL_QUADTO:
                isdbl = true;
                npoints = 2;
                segtype = SEG_QUADTO;
                break;
            case SERIAL_SEG_DBL_CUBICTO:
                isdbl = true;
                npoints = 3;
                segtype = SEG_CUBICTO;
                break;

            case SERIAL_SEG_CLOSE:
                isdbl = false;
                npoints = 0;
                segtype = SEG_CLOSE;
                break;

            case SERIAL_PATH_END:
                if (nT < 0) {
                    break PATHDONE;
                }
                throw new StreamCorruptedException("unexpected PATH_END");

            default:
                throw new StreamCorruptedException("unrecognized path type");
            }
            needRoom(segtype != SEG_MOVETO, npoints * 2);
            if (isdbl) {
                while (--npoints >= 0) {
                    append(s.readDouble(), s.readDouble());
                }
            } else {
                while (--npoints >= 0) {
                    append(s.readFloat(), s.readFloat());
                }
            }
            pointTypes[numTypes++] = segtype;
        }
        if (nT >= 0 && s.readByte() != SERIAL_PATH_END) {
            throw new StreamCorruptedException("missing PATH_END");
        }
    
abstract intrectCrossings(double rxmin, double rymin, double rxmax, double rymax)

public final synchronized voidreset()
Resets the path to empty. The append position is set back to the beginning of the path and all coordinates and point types are forgotten.

since
1.6

	numTypes = numCoords = 0;
    
public final voidsetWindingRule(int rule)
Sets the winding rule for this path to the specified value.

param
rule an integer representing the specified winding rule
exception
IllegalArgumentException if {@code rule} is not either {@link #WIND_EVEN_ODD} or {@link #WIND_NON_ZERO}
see
#getWindingRule
since
1.6

	if (rule != WIND_EVEN_ODD && rule != WIND_NON_ZERO) {
	    throw new IllegalArgumentException("winding rule must be "+
					       "WIND_EVEN_ODD or "+
					       "WIND_NON_ZERO");
	}
	windingRule = rule;
    
public abstract voidtransform(java.awt.geom.AffineTransform at)
Transforms the geometry of this path using the specified {@link AffineTransform}. The geometry is transformed in place, which permanently changes the boundary defined by this object.

param
at the {@code AffineTransform} used to transform the area
since
1.6

final voidwriteObject(java.io.ObjectOutputStream s, boolean isdbl)


         
         
    
        s.defaultWriteObject();

        float fCoords[];
        double dCoords[];

        if (isdbl) {
            dCoords = ((Path2D.Double) this).doubleCoords;
            fCoords = null;
        } else {
            fCoords = ((Path2D.Float) this).floatCoords;
            dCoords = null;
        }

        int numTypes = this.numTypes;

        s.writeByte(isdbl
                    ? SERIAL_STORAGE_DBL_ARRAY
                    : SERIAL_STORAGE_FLT_ARRAY);
        s.writeInt(numTypes);
        s.writeInt(numCoords);
        s.writeByte((byte) windingRule);

        int cindex = 0;
        for (int i = 0; i < numTypes; i++) {
            int npoints;
            byte serialtype;
            switch (pointTypes[i]) {
            case SEG_MOVETO:
                npoints = 1;
                serialtype = (isdbl
                              ? SERIAL_SEG_DBL_MOVETO
                              : SERIAL_SEG_FLT_MOVETO);
                break;
            case SEG_LINETO:
                npoints = 1;
                serialtype = (isdbl
                              ? SERIAL_SEG_DBL_LINETO
                              : SERIAL_SEG_FLT_LINETO);
                break;
            case SEG_QUADTO:
                npoints = 2;
                serialtype = (isdbl
                              ? SERIAL_SEG_DBL_QUADTO
                              : SERIAL_SEG_FLT_QUADTO);
                break;
            case SEG_CUBICTO:
                npoints = 3;
                serialtype = (isdbl
                              ? SERIAL_SEG_DBL_CUBICTO
                              : SERIAL_SEG_FLT_CUBICTO);
                break;
            case SEG_CLOSE:
                npoints = 0;
                serialtype = SERIAL_SEG_CLOSE;
                break;

            default:
                // Should never happen
                throw new InternalError("unrecognized path type");
            }
            s.writeByte(serialtype);
            while (--npoints >= 0) {
                if (isdbl) {
                    s.writeDouble(dCoords[cindex++]);
                    s.writeDouble(dCoords[cindex++]);
                } else {
                    s.writeFloat(fCoords[cindex++]);
                    s.writeFloat(fCoords[cindex++]);
                }
            }
        }
        s.writeByte((byte) SERIAL_PATH_END);