is new.
java.lang.Objectjava.awt.geom.RectangularShape
java.awt.geom.Arc2D
public abstract class Arc2D
Arc2D is the abstract superclass for all objects that store a 2D arc defined by a bounding rectangle, start angle, angular extent (length of the arc), and a closure type (OPEN, CHORD, or PIE).
The bounding rectangle defines the outer boundary of the full ellipse of which this arc is a partial section. The angles are specified relative to the non-square extents of the bounding rectangle such that 45 degrees always falls on the line from the center of the ellipse to the upper right corner of the bounding rectangle. As a result, if the bounding rectangle is noticeably longer along one axis than the other, the angles to the start and end of the arc segment will be skewed farther along the longer axis of the bounds.
The actual storage representation of the coordinates is left to the subclass.
| Nested Class Summary | |
|---|---|
| static class |
Arc2D.Double
This class defines an arc specified in double precision. |
| static class |
Arc2D.Float
This class defines an arc specified in float precision. |
| Field Summary | |
|---|---|
| static int |
CHORD
The closure type for an arc closed by drawing a straight line segment from the start of the arc segment to the end of the arc segment. |
| static int |
OPEN
The closure type for an open arc with no path segments connecting the two ends of the arc segment. |
| static int |
PIE
The closure type for an arc closed by drawing straight line segments from the start of the arc segment to the center of the full ellipse and from that point to the end of the arc segment. |
| Constructor Summary | |
|---|---|
| protected |
Arc2D
(int type) This is an abstract class that cannot be instantiated directly. |
| Method Summary | |
|---|---|
| boolean |
contains
(double x, double y) Determines whether or not the specified point is inside the boundary of the arc. |
| boolean |
contains
(double x, double y, double w, double h) Determine whether or not the interior of the arc entirely contains the specified rectangle. |
| boolean |
contains
(
Rectangle2D
r) Determine whether or not the interior of the arc entirely contains the specified rectangle. |
| boolean |
containsAngle
(double angle) Determines whether or not the specified angle is within the angular extents of the arc. |
boolean
|
equals
(
Object
Determines whether or not the specified Object is equal to this Arc2D.
|
| abstract double |
getAngleExtent
() Returns the angular extent of the arc. |
| abstract double |
getAngleStart
() Returns the starting angle of the arc. |
| int |
getArcType
() Returns the arc closure type of the arc: OPEN , CHORD , or PIE . |
| Rectangle2D |
getBounds2D
() Returns the high-precision bounding box of the arc. |
| Point2D |
getEndPoint
() Returns the ending point of the arc. |
| PathIterator |
getPathIterator
(
AffineTransform
at) Returns an iteration object that defines the boundary of the arc. |
| Point2D |
getStartPoint
() Returns the starting point of the arc. |
int
|
hashCode
()
Returns the hashcode for this Arc2D.
|
| boolean |
intersects
(double x, double y, double w, double h) Determines whether or not the interior of the arc intersects the interior of the specified rectangle. |
| protected abstract Rectangle2D |
makeBounds
(double x, double y, double w, double h) Constructs a Rectangle2D of the appropriate precision to hold the parameters calculated to be the bounding box of this arc. |
| abstract void |
setAngleExtent
(double angExt) Sets the angular extent of this arc to the specified double value. |
| void |
setAngles
(double x1, double y1, double x2, double y2) Sets the starting angle and angular extent of this arc using two sets of coordinates. |
| void |
setAngles
(
Point2D
p1,
Point2D
p2) Sets the starting angle and angular extent of this arc using two points. |
| abstract void |
setAngleStart
(double angSt) Sets the starting angle of this arc to the specified double value. |
| void |
setAngleStart
(
Point2D
p) Sets the starting angle of this arc to the angle that the specified point defines relative to the center of this arc. |
| void |
setArc
(
Arc2D
a) Sets this arc to be the same as the specified arc. |
| abstract void |
setArc
(double x, double y, double w, double h, double angSt, double angExt, int closure) Sets the location, size, angular extents, and closure type of this arc to the specified double values. |
| void |
setArc
(
Point2D
loc,
Dimension2D
size, double angSt, double angExt, int closure) Sets the location, size, angular extents, and closure type of this arc to the specified values. |
| void |
setArc
(
Rectangle2D
rect, double angSt, double angExt, int closure) Sets the location, size, angular extents, and closure type of this arc to the specified values. |
| void |
setArcByCenter
(double x, double y, double radius, double angSt, double angExt, int closure) Sets the position, bounds, angular extents, and closure type of this arc to the specified values. |
| void |
setArcByTangent
(
Point2D
p1,
Point2D
p2,
Point2D
p3, double radius) Sets the position, bounds, and angular extents of this arc to the specified value. |
| void |
setArcType
(int type) Sets the closure type of this arc to the specified value: OPEN, CHORD, or PIE. |
| void |
setFrame
(double x, double y, double w, double h) Sets the location and size of the outer bounds of this arc to the specified values. |
| Methods inherited from class java.awt.geom. RectangularShape |
|---|
| clone , contains , getBounds , getCenterX , getCenterY , getFrame , getHeight , getMaxX , getMaxY , getMinX , getMinY , getPathIterator , getWidth , getX , getY , intersects , isEmpty , setFrame , setFrame , setFrameFromCenter , setFrameFromCenter , setFrameFromDiagonal , setFrameFromDiagonal |
| Methods inherited from class java.lang. Object |
|---|
|
| Field Detail |
|---|
public static final int OPEN
public static final int CHORD
public static final int PIE
| Constructor Detail |
|---|
protected Arc2D(int type)
| Method Detail |
|---|
public abstract double getAngleStart()
public abstract double getAngleExtent()
public int getArcType()
public Point2D getStartPoint()
public Point2D getEndPoint()
public abstract void setArc(double x,
double y,
double w,
double h,
double angSt,
double angExt,
int closure)
public void setArc(Point2D loc,
Dimension2D size,
double angSt,
double angExt,
int closure)
public void setArc(Rectangle2D rect,
double angSt,
double angExt,
int closure)
public void setArc(Arc2D a)
public void setArcByCenter(double x,
double y,
double radius,
double angSt,
double angExt,
int closure)
public void setArcByTangent(Point2D p1,
Point2D p2,
Point2D p3,
double radius)
public abstract void setAngleStart(double angSt)
public abstract void setAngleExtent(double angExt)
public void setAngleStart(Point2D p)
public void setAngles(double x1,
double y1,
double x2,
double y2)
public void setAngles(Point2D p1,
Point2D p2)
public void setArcType(int type)
public void setFrame(double x,
double y,
double w,
double h)
public Rectangle2D getBounds2D()
This method differs from the getBounds in that the getBounds method only returns the bounds of the enclosing ellipse of this Arc2D without considering the starting and ending angles of this Arc2D.
protected abstract Rectangle2D makeBounds(double x,
double y,
double w,
double h)
public boolean containsAngle(double angle)
public boolean contains(double x,
double y)
public boolean intersects(double x,
double y,
double w,
double h)
public boolean contains(double x,
double y,
double w,
double h)
public boolean contains(Rectangle2D r)
public PathIterator getPathIterator(AffineTransform at)
hashCode
public int
hashCode
()
Returns the hashcode for this Arc2D.
Overrides:
hashCode
in class
Object
Returns:
the hashcode for this Arc2D.
Since:
1.6
See Also:
Object.equals(java.lang.Object)
,
Hashtable
equals
public boolean
equals
(
Object
obj)
Determines whether or not the specified Object is equal to this Arc2D. The specified Object is equal to this Arc2D if it is an instance of Arc2D and if its location, size, arc extents and type are the same as this Arc2D.
Overrides:
equals
in class
Object
Parameters:
obj - an Object to be compared with this Arc2D.
Returns:
true if obj is an instance of Arc2D and has the same values; false otherwise.
Since:
1.6
See Also:
Object.hashCode()
,
Hashtable