Uses of Interface
microsim.gui.space.ILayerDrawer
-
Packages that use ILayerDrawer Package Description microsim.gui.space -
-
Uses of ILayerDrawer in microsim.gui.space
Classes in microsim.gui.space that implement ILayerDrawer Modifier and Type Class Description class
LayerDblGridDrawer
It is able to draw a DblGrid on a LayeredSurfaceFrame using a ColorMap to render the values contained by the cell with a specific color.
This class builds an image when created and every time is updated it modifies the parts of the images that are changed.class
LayerIntGridDrawer
It is able to draw an IntGrid on a LayeredSurfaceFrame using a ColorMap to render the values contained by the cell with a specific color.
This class builds an image when created and every time is updated it modifies the parts of the images that are changed.class
LayerMultiObjectGridDrawer
It is able to draw objects contained by a MultiObjGrid on a LayeredSurfaceFrame.
When on a cell there is at least one object it is represented by a circle.class
LayerObjectGridDrawer
It is able to draw objects contained by an ObjGrid on a LayeredSurfaceFrame.
An object is represented by a circle.Methods in microsim.gui.space that return types with arguments of type ILayerDrawer Modifier and Type Method Description java.util.List<ILayerDrawer>
LayeredSurfacePanel. getLayers()
Return the list of current added layers.Methods in microsim.gui.space with parameters of type ILayerDrawer Modifier and Type Method Description void
LayeredSurfaceFrame. addLayer(ILayerDrawer layer)
Add a ILayerDrawer to the layer list.void
LayeredSurfacePanel. addLayer(ILayerDrawer layer)
Add a ILayerDrawer to the layer list.Constructor parameters in microsim.gui.space with type arguments of type ILayerDrawer Constructor Description LayeredSurfaceProperties(java.awt.Frame frame, java.lang.String title, int cellSize, java.util.List<ILayerDrawer> layers)
-