- java.lang.Object
-
- java.awt.geom.RectangularShape
-
- java.awt.geom.Arc2D
-
- java.awt.geom.Arc2D.Double
-
- All Implemented Interfaces:
- Shape, Serializable, Cloneable
- Enclosing class:
- Arc2D
public static class Arc2D.Double extends Arc2D implements Serializable
This class defines an arc specified indouble
precision.- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.awt.geom.Arc2D
Arc2D.Double, Arc2D.Float
-
-
Field Summary
Fields Modifier and Type Field and Description double
extent
The angular extent of the arc in degrees.double
height
The overall height of the full ellipse of which this arc is a partial section (not considering the angular extents).double
start
The starting angle of the arc in degrees.double
width
The overall width of the full ellipse of which this arc is a partial section (not considering the angular extents).double
x
The X coordinate of the upper-left corner of the framing rectangle of the arc.double
y
The Y coordinate of the upper-left corner of the framing rectangle of the arc.
-
Constructor Summary
Constructors Constructor and Description Arc2D.Double()
Constructs a new OPEN arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0).Arc2D.Double(double x, double y, double w, double h, double start, double extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.Arc2D.Double(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.Arc2D.Double(Rectangle2D ellipseBounds, double start, double extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.
-
Method Summary
Methods Modifier and Type Method and Description double
getAngleExtent()
Returns the angular extent of the arc.double
getAngleStart()
Returns the starting angle of the arc.double
getHeight()
Returns the height of the framing rectangle indouble
precision.double
getWidth()
Returns the width of the framing rectangle indouble
precision.double
getX()
Returns the X coordinate of the upper-left corner of the framing rectangle indouble
precision.double
getY()
Returns the Y coordinate of the upper-left corner of the framing rectangle indouble
precision.boolean
isEmpty()
Determines whether theRectangularShape
is empty.protected Rectangle2D
makeBounds(double x, double y, double w, double h)
Constructs aRectangle2D
of the appropriate precision to hold the parameters calculated to be the framing rectangle of this arc.void
setAngleExtent(double angExt)
Sets the angular extent of this arc to the specified double value.void
setAngleStart(double angSt)
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 inherited from class java.awt.geom.Arc2D
contains, contains, contains, containsAngle, equals, getArcType, getBounds2D, getEndPoint, getPathIterator, getStartPoint, hashCode, intersects, setAngles, setAngles, setAngleStart, setArc, setArc, setArc, setArcByCenter, setArcByTangent, setArcType, setFrame
-
Methods inherited from class java.awt.geom.RectangularShape
clone, contains, getBounds, getCenterX, getCenterY, getFrame, getMaxX, getMaxY, getMinX, getMinY, getPathIterator, intersects, setFrame, setFrame, setFrameFromCenter, setFrameFromCenter, setFrameFromDiagonal, setFrameFromDiagonal
-
-
-
-
Field Detail
-
x
public double x
The X coordinate of the upper-left corner of the framing rectangle of the arc.- Since:
- 1.2
-
y
public double y
The Y coordinate of the upper-left corner of the framing rectangle of the arc.- Since:
- 1.2
-
width
public double width
The overall width of the full ellipse of which this arc is a partial section (not considering the angular extents).- Since:
- 1.2
-
height
public double height
The overall height of the full ellipse of which this arc is a partial section (not considering the angular extents).- Since:
- 1.2
-
start
public double start
The starting angle of the arc in degrees.- Since:
- 1.2
-
extent
public double extent
The angular extent of the arc in degrees.- Since:
- 1.2
-
-
Constructor Detail
-
Arc2D.Double
public Arc2D.Double()
Constructs a new OPEN arc, initialized to location (0, 0), size (0, 0), angular extents (start = 0, extent = 0).- Since:
- 1.2
-
Arc2D.Double
public Arc2D.Double(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.- Parameters:
type
- The closure type for the arc:Arc2D.OPEN
,Arc2D.CHORD
, orArc2D.PIE
.- Since:
- 1.2
-
Arc2D.Double
public Arc2D.Double(double x, double y, double w, double h, double start, double extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.- Parameters:
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
, orArc2D.PIE
.- Since:
- 1.2
-
Arc2D.Double
public Arc2D.Double(Rectangle2D ellipseBounds, double start, double extent, int type)
Constructs a new arc, initialized to the specified location, size, angular extents, and closure type.- Parameters:
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
, orArc2D.PIE
.- Since:
- 1.2
-
-
Method Detail
-
getX
public double getX()
Returns the X coordinate of the upper-left corner of the framing rectangle indouble
precision. Note that the arc partially inscribes the framing rectangle of thisRectangularShape
.- Specified by:
getX
in classRectangularShape
- Returns:
- the X coordinate of the upper-left corner of the framing rectangle.
- Since:
- 1.2
-
getY
public double getY()
Returns the Y coordinate of the upper-left corner of the framing rectangle indouble
precision. Note that the arc partially inscribes the framing rectangle of thisRectangularShape
.- Specified by:
getY
in classRectangularShape
- Returns:
- the Y coordinate of the upper-left corner of the framing rectangle.
- Since:
- 1.2
-
getWidth
public double getWidth()
Returns the width of the framing rectangle indouble
precision. Note that the arc partially inscribes the framing rectangle of thisRectangularShape
.- Specified by:
getWidth
in classRectangularShape
- Returns:
- the width of the framing rectangle.
- Since:
- 1.2
-
getHeight
public double getHeight()
Returns the height of the framing rectangle indouble
precision. Note that the arc partially inscribes the framing rectangle of thisRectangularShape
.- Specified by:
getHeight
in classRectangularShape
- Returns:
- the height of the framing rectangle.
- Since:
- 1.2
-
getAngleStart
public double getAngleStart()
Returns the starting angle of the arc.- Specified by:
getAngleStart
in classArc2D
- Returns:
- A double value that represents the starting angle of the arc in degrees.
- Since:
- 1.2
- See Also:
Arc2D.setAngleStart(double)
-
getAngleExtent
public double getAngleExtent()
Returns the angular extent of the arc.- Specified by:
getAngleExtent
in classArc2D
- Returns:
- A double value that represents the angular extent of the arc in degrees.
- Since:
- 1.2
- See Also:
Arc2D.setAngleExtent(double)
-
isEmpty
public boolean isEmpty()
Determines whether theRectangularShape
is empty. When theRectangularShape
is empty, it encloses no area.- Specified by:
isEmpty
in classRectangularShape
- Returns:
true
if theRectangularShape
is empty;false
otherwise.- Since:
- 1.2
-
setArc
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.- Specified by:
setArc
in classArc2D
- Parameters:
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
, orArc2D.PIE
.- Since:
- 1.2
-
setAngleStart
public void setAngleStart(double angSt)
Sets the starting angle of this arc to the specified double value.- Specified by:
setAngleStart
in classArc2D
- Parameters:
angSt
- The starting angle of the arc in degrees.- Since:
- 1.2
- See Also:
Arc2D.getAngleStart()
-
setAngleExtent
public void setAngleExtent(double angExt)
Sets the angular extent of this arc to the specified double value.- Specified by:
setAngleExtent
in classArc2D
- Parameters:
angExt
- The angular extent of the arc in degrees.- Since:
- 1.2
- See Also:
Arc2D.getAngleExtent()
-
makeBounds
protected Rectangle2D makeBounds(double x, double y, double w, double h)
Constructs aRectangle2D
of the appropriate precision to hold the parameters calculated to be the framing rectangle of this arc.- Specified by:
makeBounds
in classArc2D
- Parameters:
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.- Returns:
- a
Rectangle2D
that is the framing rectangle of this arc. - Since:
- 1.2
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 15:33:59 Cette version de la page est en cache (à la date du 05/11/2024 15:33:59) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/geom/Arc2D.Double.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.