Shape
, Serializable
, Cloneable
Arc2D
This class defines an arc specified in float
precision.
Fields
float
The angular extent of the arc in degrees.
float
The overall height of the full ellipse of which this arc is a partial section (not considering the angular extents).
float
The starting angle of the arc in degrees.
float
The overall width of the full ellipse of which this arc is a partial section (not considering the angular extents).
float
The X coordinate of the upper-left corner of the framing rectangle of the arc.
float
The Y coordinate of the upper-left corner of the framing rectangle of the arc.
Constructors
Constructs a new OPEN arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0).
Float(float x, float y, float w, float h, float start, float extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.
Constructs a new arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0), and the specified closure type.
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.
double
Returns the angular extent of the arc.
double
Returns the starting angle of the arc.
double
Returns the height of the framing rectangle in double
precision.
double
Returns the width of the framing rectangle in double
precision.
double
Returns the X coordinate of the upper-left corner of the framing rectangle in double
precision.
double
Returns the Y coordinate of the upper-left corner of the framing rectangle in double
precision.
boolean
Determines whether the RectangularShape
is empty.
makeBounds(double x, double y, double w, double h)
Constructs a Rectangle2D
of the appropriate precision to hold the parameters calculated to be the framing rectangle of this arc.
void
Sets the angular extent of this arc to the specified double value.
void
Sets the starting angle of this arc to the specified double value.
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.
Methods declared in class java.awt.geom.Arc2Dcontains, contains, contains, containsAngle, equals, getArcType, getBounds2D, getEndPoint, getPathIterator, getStartPoint, hashCode, intersects, setAngles, setAngles, setAngleStart, setArc, setArc, setArc, setArcByCenter, setArcByTangent, setArcType, setFrame
Methods declared in class java.awt.geom.RectangularShapeclone, contains, getBounds, getCenterX, getCenterY, getFrame, getMaxX, getMaxY, getMinX, getMinY, getPathIterator, intersects, setFrame, setFrame, setFrameFromCenter, setFrameFromCenter, setFrameFromDiagonal, setFrameFromDiagonal
public float x
The X coordinate of the upper-left corner of the framing rectangle of the arc.
public float y
The Y coordinate of the upper-left corner of the framing rectangle of the arc.
public float width
The overall width of the full ellipse of which this arc is a partial section (not considering the angular extents).
public float height
The overall height of the full ellipse of which this arc is a partial section (not considering the angular extents).
public float start
The starting angle of the arc in degrees.
public float extent
The angular extent of the arc in degrees.
public Float()
Constructs a new OPEN arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0).
public Float(int type)
Constructs a new arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0), and the specified closure type.
type
- The closure type for the arc: Arc2D.OPEN
, Arc2D.CHORD
, or Arc2D.PIE
.
public Float(float x, float y, float w, float h, float start, float extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.
x
- The X coordinate of the upper-left corner of the arc's framing rectangle.
y
- The Y coordinate of the upper-left corner of the arc's framing rectangle.
w
- The overall width of the full ellipse of which this arc is a partial section.
h
- The overall height of the full ellipse of which this arc is a partial section.
start
- The starting angle of the arc in degrees.
extent
- The angular extent of the arc in degrees.
type
- The closure type for the arc: Arc2D.OPEN
, Arc2D.CHORD
, or Arc2D.PIE
.
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.
ellipseBounds
- The framing rectangle that defines the outer boundary of the full ellipse of which this arc is a partial section.
start
- The starting angle of the arc in degrees.
extent
- The angular extent of the arc in degrees.
type
- The closure type for the arc: Arc2D.OPEN
, Arc2D.CHORD
, or Arc2D.PIE
.
public double getX()
Returns the X coordinate of the upper-left corner of the framing rectangle in
double
precision. Note that the arc
partially inscribesthe framing rectangle of this
RectangularShape
.
getX
in class RectangularShape
public double getY()
Returns the Y coordinate of the upper-left corner of the framing rectangle in
double
precision. Note that the arc
partially inscribesthe framing rectangle of this
RectangularShape
.
getY
in class RectangularShape
public double getWidth()
Returns the width of the framing rectangle in
double
precision. Note that the arc
partially inscribesthe framing rectangle of this
RectangularShape
.
getWidth
in class RectangularShape
public double getHeight()
Returns the height of the framing rectangle in
double
precision. Note that the arc
partially inscribesthe framing rectangle of this
RectangularShape
.
getHeight
in class RectangularShape
public double getAngleStart()
Returns the starting angle of the arc.
getAngleStart
in class Arc2D
public double getAngleExtent()
Returns the angular extent of the arc.
getAngleExtent
in class Arc2D
public boolean isEmpty()
Determines whether the RectangularShape
is empty. When the RectangularShape
is empty, it encloses no area.
isEmpty
in class RectangularShape
true
if the RectangularShape
is empty; false
otherwise.
public 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.
setArc
in class Arc2D
x
- The X coordinate of the upper-left corner of the arc.
y
- The Y coordinate of the upper-left corner of the arc.
w
- The overall width of the full ellipse of which this arc is a partial section.
h
- The overall height of the full ellipse of which this arc is a partial section.
angSt
- The starting angle of the arc in degrees.
angExt
- The angular extent of the arc in degrees.
closure
- The closure type for the arc: Arc2D.OPEN
, Arc2D.CHORD
, or Arc2D.PIE
.
public void setAngleStart(double angSt)
Sets the starting angle of this arc to the specified double value.
setAngleStart
in class Arc2D
angSt
- The starting angle of the arc in degrees.
public void setAngleExtent(double angExt)
Sets the angular extent of this arc to the specified double value.
setAngleExtent
in class Arc2D
angExt
- The angular extent of the arc in degrees.
Constructs a Rectangle2D
of the appropriate precision to hold the parameters calculated to be the framing rectangle of this arc.
makeBounds
in class Arc2D
x
- The X coordinate of the upper-left corner of the framing rectangle.
y
- The Y coordinate of the upper-left corner of the framing rectangle.
w
- The width of the framing rectangle.
h
- The height of the framing rectangle.
Rectangle2D
that is the framing rectangle of this arc.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4