Package sim.portrayal.network
Class NetworkPortrayal2D
java.lang.Object
sim.portrayal.FieldPortrayal
sim.portrayal.FieldPortrayal2D
sim.portrayal.network.NetworkPortrayal2D
- All Implemented Interfaces:
Portrayal,Portrayal2D
Portrays network fields. Only draws the edges. To draw the nodes, use a
ContinuousPortrayal2D or SparseGridPortrayal2D. The 'location' passed
into the DrawInfo2D handed to the SimplePortryal2D is the Edge itself,
while the 'object' passed to the SimplePortryal2D is the Edge's info object.
-
Field Summary
Fields inherited from class sim.portrayal.FieldPortrayal2D
DEFAULT, DONT_USE_BUFFER, USE_BUFFERFields inherited from class sim.portrayal.FieldPortrayal
classPortrayals, field, immutableField, portrayalForAll, portrayalForNonNull, portrayalForNull, portrayalForRemainder, portrayals -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionShould return a portrayal which can portray any object regardless of whether it's valid or notgetWrapper(Edge edge) protected voidhitOrDraw(Graphics2D graphics, DrawInfo2D info, Bag putInHere) Instead of overriding the draw and hitObjects methods, you can optionally override this method to provide both the draw(...) and hitObjects(...) functionality in a single method, as it's common that these two methods have nearly identical code.voidSets the field, and sets the dirtyField flag to true.Methods inherited from class sim.portrayal.FieldPortrayal2D
draw, getBuffering, getClipLocation, getLocationPosition, getObjectPosition, getPositionLocation, getRelativeObjectPosition, getScale, hitObjects, setBuffering, setObjectPositionMethods inherited from class sim.portrayal.FieldPortrayal
getAlternatePortrayalOrdering, getDefaultNullPortrayal, getField, getInspector, getName, getObjectLocation, getPortrayalForAll, getPortrayalForNonNull, getPortrayalForNull, getPortrayalForObject, getPortrayalForRemainder, getStatus, isDirtyField, isImmutableField, reset, setAlternatePortrayalOrdering, setDirtyField, setImmutableField, setObjectLocation, setPortrayalForAll, setPortrayalForClass, setPortrayalForNonNull, setPortrayalForNull, setPortrayalForObject, setPortrayalForRemainder, setSelected, setSelectedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface sim.portrayal.Portrayal
getInspector, getName, getStatus, setSelected
-
Constructor Details
-
NetworkPortrayal2D
public NetworkPortrayal2D()
-
-
Method Details
-
getDefaultPortrayal
Description copied from class:FieldPortrayalShould return a portrayal which can portray any object regardless of whether it's valid or not- Overrides:
getDefaultPortrayalin classFieldPortrayal2D
-
setField
Description copied from class:FieldPortrayalSets the field, and sets the dirtyField flag to true. May throw an exception if the field is inappropriate. The default version just sets the field and sets the dirtyField flag.- Overrides:
setFieldin classFieldPortrayal
-
hitOrDraw
Description copied from class:FieldPortrayal2DInstead of overriding the draw and hitObjects methods, you can optionally override this method to provide both the draw(...) and hitObjects(...) functionality in a single method, as it's common that these two methods have nearly identical code. You should test which operation to do based on whether or not graphics is null (if it is, you're hitting, else you're drawing).- Overrides:
hitOrDrawin classFieldPortrayal2D
-
getWrapper
-