NED File src/inet/visualizer/osg/networklayer/RoutingTableOsgVisualizer.ned
Name | Type | Description |
---|---|---|
RoutingTableOsgVisualizer | simple module |
This module visualizes routes in the routing tables on a 3D osg scene. It displays an arrow for each route in the routing tables of the network. The arrow points from the node containing the routing table towards the gateway. The arrow automatically follows the movement of mobile nodes. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.visualizer.osg.networklayer; import inet.visualizer.base.RoutingTableVisualizerBase; import inet.visualizer.contract.IRoutingTableVisualizer; // // This module visualizes routes in the routing tables on a 3D osg scene. It // displays an arrow for each route in the routing tables of the network. The // arrow points from the node containing the routing table towards the gateway. // The arrow automatically follows the movement of mobile nodes. // // @see ~RoutingTableCanvasVisualizer, ~RoutingTableVisualizer, ~RoutingTableVisualizerBase, ~IRoutingTableVisualizer // simple RoutingTableOsgVisualizer extends RoutingTableVisualizerBase like IRoutingTableVisualizer { parameters: @class(RoutingTableOsgVisualizer); }