- java.lang.Object
-
- java.awt.geom.Path2D
-
- java.awt.geom.Path2D.Float
-
- java.awt.geom.GeneralPath
-
- All Implemented Interfaces:
- Shape, Serializable, Cloneable
public final class GeneralPath extends Path2D.Float
TheGeneralPath
class represents a geometric path constructed from straight lines, and quadratic and cubic (Bézier) curves. It can contain multiple subpaths.GeneralPath
is a legacy final class which exactly implements the behavior of its superclassPath2D.Float
. Together withPath2D.Double
, thePath2D
classes provide full implementations of a general geometric path that support all of the functionality of theShape
andPathIterator
interfaces with the ability to explicitly select different levels of internal coordinate precision.Use
Path2D.Float
(or this legacyGeneralPath
subclass) when dealing with data that can be represented and used with floating point precision. UsePath2D.Double
for data that requires the accuracy or range of double precision.- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.awt.geom.Path2D
Path2D.Double, Path2D.Float
-
-
Field Summary
-
Fields inherited from class java.awt.geom.Path2D
WIND_EVEN_ODD, WIND_NON_ZERO
-
-
Constructor Summary
Constructors Constructor and Description GeneralPath()
Constructs a new empty single precisionGeneralPath
object with a default winding rule ofPath2D.WIND_NON_ZERO
.GeneralPath(int rule)
Constructs a newGeneralPath
object with the specified winding rule to control operations that require the interior of the path to be defined.GeneralPath(int rule, int initialCapacity)
Constructs a newGeneralPath
object with the specified winding rule and the specified initial capacity to store path coordinates.GeneralPath(Shape s)
Constructs a newGeneralPath
object from an arbitraryShape
object.
-
Method Summary
-
Methods inherited from class java.awt.geom.Path2D.Float
append, clone, curveTo, curveTo, getBounds2D, getPathIterator, lineTo, lineTo, moveTo, moveTo, quadTo, quadTo, transform
-
Methods inherited from class java.awt.geom.Path2D
append, closePath, contains, contains, contains, contains, contains, contains, contains, contains, createTransformedShape, getBounds, getCurrentPoint, getPathIterator, getWindingRule, intersects, intersects, intersects, intersects, reset, setWindingRule
-
-
-
-
Constructor Detail
-
GeneralPath
public GeneralPath()
Constructs a new empty single precisionGeneralPath
object with a default winding rule ofPath2D.WIND_NON_ZERO
.- Since:
- 1.2
-
GeneralPath
public GeneralPath(int rule)
Constructs a newGeneralPath
object with the specified winding rule to control operations that require the interior of the path to be defined.- Parameters:
rule
- the winding rule- Since:
- 1.2
- See Also:
Path2D.WIND_EVEN_ODD
,Path2D.WIND_NON_ZERO
-
GeneralPath
public GeneralPath(int rule, int initialCapacity)
Constructs a newGeneralPath
object with the specified winding rule and the specified initial capacity to store path coordinates. This number is an initial guess as to how many path segments will be added to the path, but the storage is expanded as needed to store whatever path segments are added.- Parameters:
rule
- the winding ruleinitialCapacity
- the estimate for the number of path segments in the path- Since:
- 1.2
- See Also:
Path2D.WIND_EVEN_ODD
,Path2D.WIND_NON_ZERO
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/geom/GeneralPath.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.