Uses of Interface
org.opentrafficsim.core.animation.DrawingInfo
-
Packages that use DrawingInfo Package Description org.opentrafficsim.core.animation Drawing information for animation, but non-specific for any type of visualization engine like Swing.org.opentrafficsim.core.animation.network Persistent storage of the drawing information for animated / visualized objects. -
-
Uses of DrawingInfo in org.opentrafficsim.core.animation
Classes in org.opentrafficsim.core.animation that implement DrawingInfo Modifier and Type Class Description class
DrawingInfoLine<D extends Drawable>
DrawingInfoLine stores the drawing information about a line.class
DrawingInfoShape<D extends Drawable>
DrawingInfoLine stores the drawing information about a shape.class
DrawingInfoStripe<D extends Drawable>
DrawingInfoStripe stores the drawing information about a stripe on a road. -
Uses of DrawingInfo in org.opentrafficsim.core.animation.network
Methods in org.opentrafficsim.core.animation.network that return DrawingInfo Modifier and Type Method Description DrawingInfo
NetworkAnimation. getDrawingInfo(Drawable drawable)
Get the drawing information for a drawable instance.DrawingInfo
NetworkAnimation. getDrawingInfoBase(Drawable drawable)
Get the static drawing information for a drawable instance.DrawingInfo
NetworkAnimation. getDrawingInfoClass(java.lang.Class<? extends Drawable> drawableClass)
Get the static class-based drawing information for a drawable instance.Methods in org.opentrafficsim.core.animation.network with parameters of type DrawingInfo Modifier and Type Method Description void
NetworkAnimation. addDrawingInfoBase(Drawable drawable, DrawingInfo drawingInfo)
Add the drawing info for an instance.void
NetworkAnimation. addDrawingInfoClass(java.lang.Class<? extends Drawable> drawableClass, DrawingInfo drawingInfo)
Add the drawing info for a class.void
NetworkAnimation. addDrawingInfoDynamic(Drawable drawable, DrawingInfo drawingInfo)
Add the dynamic drawing information for an instance.
-