-
- All Known Implementing Classes:
- BasicStroke
public interface Stroke
TheStroke
interface allows aGraphics2D
object to obtain aShape
that is the decorated outline, or stylistic representation of the outline, of the specifiedShape
. Stroking aShape
is like tracing its outline with a marking pen of the appropriate size and shape. The area where the pen would place ink is the area enclosed by the outlineShape
.The methods of the
Graphics2D
interface that use the outlineShape
returned by aStroke
object includedraw
and any other methods that are implemented in terms of that method, such asdrawLine
,drawRect
,drawRoundRect
,drawOval
,drawArc
,drawPolyline
, anddrawPolygon
.The objects of the classes implementing
Stroke
must be read-only becauseGraphics2D
does not clone these objects either when they are set as an attribute with thesetStroke
method or when theGraphics2D
object is itself cloned. If aStroke
object is modified after it is set in theGraphics2D
context then the behavior of subsequent rendering would be undefined.
-
-
Method Summary
Methods Modifier and Type Method and Description Shape
createStrokedShape(Shape p)
Returns an outlineShape
which encloses the area that should be painted when theShape
is stroked according to the rules defined by the object implementing theStroke
interface.
-
-
-
Method Detail
-
createStrokedShape
Shape createStrokedShape(Shape p)
Returns an outlineShape
which encloses the area that should be painted when theShape
is stroked according to the rules defined by the object implementing theStroke
interface.- Parameters:
p
- aShape
to be stroked- Returns:
- the stroked outline
Shape
.
-
-
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:56:29 Cette version de la page est en cache (à la date du 05/11/2024 15:56:29) 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 28/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/Stroke.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.