Package org.opentrafficsim.draw.core
Class PaintPolygons
java.lang.Object
org.opentrafficsim.draw.core.PaintPolygons
Paint a (series of) filled polygon(s) defined as a Path2D.Double
Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Peter Knoppers
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.opentrafficsim.core.geometry.OtsPoint3d
Dummy coordinate that forces the drawing operation to start a new path. -
Method Summary
Modifier and TypeMethodDescriptionstatic void
paintMultiPolygon
(Graphics2D graphics, Color color, org.opentrafficsim.core.geometry.DirectedPoint referencePoint, org.opentrafficsim.core.geometry.OtsLine3d line, boolean fill) Paint (fill) a polygon or a series of polygons.
-
Field Details
-
NEWPATH
public static final org.opentrafficsim.core.geometry.OtsPoint3d NEWPATHDummy coordinate that forces the drawing operation to start a new path.
-
-
Method Details
-
paintMultiPolygon
public static void paintMultiPolygon(Graphics2D graphics, Color color, org.opentrafficsim.core.geometry.DirectedPoint referencePoint, org.opentrafficsim.core.geometry.OtsLine3d line, boolean fill) Paint (fill) a polygon or a series of polygons.- Parameters:
graphics
- Graphics2D; the graphics environmentcolor
- Color; the color to usereferencePoint
- DirectedPoint; the reference pointline
- OtsLine3d; array of pointsfill
- boolean; fill or just contour
-