Class dnx.lr.Route
All Packages Class Hierarchy This Package Previous Next Index
Class dnx.lr.Route
java.lang.Object
|
+----dnx.util.DNXObject
|
+----dnx.util.DNXInstancedObject
|
+----dnx.lr.Route
- public class Route
- extends DNXInstancedObject
A route is a Moving Worlds concept that connects an EventOut to
an EventIn -- when an EventOut is generated on one end of the route,
its value is used to generate the EventIn on the other end. This is
used, for example, to ensure that different parts of the scene graph
stay in sync.
-
Route(Node, int, Node, int)
-
-
getEventInIndex()
-
-
getEventOutIndex()
-
-
getReceiver()
-
-
getSender()
-
-
isInvisible()
-
-
print(PrintAction)
-
-
read(ReadAction)
- Parse and create a new Route -- this looks for the
"ROUTE foo TO bar" syntax in a VRML file.
-
toString()
-
Route
public Route(Node fromNode,
int outEvent,
Node toNode,
int inEvent)
read
public static Route read(ReadAction a) throws IOException, VRMLSyntaxException
- Parse and create a new Route -- this looks for the
"ROUTE foo TO bar" syntax in a VRML file.
print
public void print(PrintAction a)
getSender
public Node getSender()
getReceiver
public Node getReceiver()
getEventOutIndex
public int getEventOutIndex()
getEventInIndex
public int getEventInIndex()
isInvisible
public boolean isInvisible()
toString
public String toString()
- Overrides:
- toString in class DNXInstancedObject
All Packages Class Hierarchy This Package Previous Next Index