Package org.opentrafficsim.draw.core
Class PaintPolygons
- java.lang.Object
-
- org.opentrafficsim.draw.core.PaintPolygons
-
public final class PaintPolygons extends java.lang.Object
Paint a (series of) filled polygon(s) defined as a Path2D.DoubleCopyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.$LastChangedDate: 2018-10-10 23:23:48 +0200 (Wed, 10 Oct 2018) $, @version $Revision: 4693 $, by $Author: averbraeck $, initial version 10 apr. 2015
- Author:
- Peter Knoppers
-
-
Field Summary
Fields Modifier and Type Field Description static OTSPoint3D
NEWPATH
Dummy coordinate that forces the drawing operation to start a new path.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
paintMultiPolygon(java.awt.Graphics2D graphics, java.awt.Color color, DirectedPoint referencePoint, OTSLine3D line, boolean fill)
Paint (fill) a polygon or a series of polygons.
-
-
-
Field Detail
-
NEWPATH
public static final OTSPoint3D NEWPATH
Dummy coordinate that forces the drawing operation to start a new path.
-
-
Method Detail
-
paintMultiPolygon
public static void paintMultiPolygon(java.awt.Graphics2D graphics, java.awt.Color color, DirectedPoint referencePoint, 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
-
-