NetworkRouteOsgVisualizer.ned
NED File src/inet/visualizer/osg/networklayer/NetworkRouteOsgVisualizer.ned
| Name | Type | Description |
|---|---|---|
| NetworkRouteOsgVisualizer | simple module |
Visualizes network routes on a 3D osg scene. It displays a polyline for each active route in the network. See the documentation of the base module for what constitutes an active route. Each polyline fades out over time until the route becomes inactive unless it is reinforced by another packet. The polyline 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.PathVisualizerBase; import inet.visualizer.contract.INetworkRouteVisualizer; // // Visualizes network routes on a 3D osg scene. It displays a // polyline for each active route in the network. See the documentation of the // base module for what constitutes an active route. Each polyline fades out // over time until the route becomes inactive unless it is reinforced by another // packet. The polyline automatically follows the movement of mobile nodes. // // @see ~NetworkRouteCanvasVisualizer, ~NetworkRouteVisualizer, ~PathVisualizerBase, ~INetworkRouteVisualizer // simple NetworkRouteOsgVisualizer extends PathVisualizerBase like INetworkRouteVisualizer { parameters: @class(NetworkRouteOsgVisualizer); }