Package: inet.visualizer.contract
INetworkNodeVisualizer
module interfaceInterface allows configuring different ~INetworkNodeVisualizer submodules from INI files. Such a visualizer creates the visual representations of network nodes.
<b>See also:</b> ~NetworkNodeCanvasVisualizer, ~NetworkNodeOsgVisualizer, ~NetworkNodeVisualizer, ~NetworkNodeVisualizerBase
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
| Name | Type | Description |
|---|---|---|
| NetworkNodeCanvasVisualizer | simple module |
Visualizes multiple network nodes on a 2D canvas. It maintains a NetworkNodeCanvasVisualization figure for each node in the network which can be annotated by other visualizers. |
| NetworkNodeOsgVisualizer | simple module |
Visualizes multiple network nodes on a 3D osg scene. The visual representation is either a 3D external model or a 2D icon that is rotated automatically towards the camera. The 3D external model is specified in the osgModel module parameter of the network node. The 2D icon is the image specified in the display string of the network node. The visualizer maintains a NetworkNodeOsgVisualization instance for each network node which can be annotated by other visualizers. |
| NetworkNodeVisualizer | compound module |
Integrates canvas and osg node visualizers into a single module. |
Used in compound modules
| Name | Type | Description |
|---|---|---|
| IntegratedCanvasVisualizer | compound module |
Integrates all canvas visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type. |
| IntegratedMultiCanvasVisualizer | compound module |
Integrates all canvas visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type. |
| IntegratedMultiOsgVisualizer | compound module |
Integrates all osg visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type. |
| IntegratedOsgVisualizer | compound module |
Integrates all osg visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type. |
| NetworkNodeVisualizer | compound module |
Integrates canvas and osg node visualizers into a single module. |
Extends
| Name | Type | Description |
|---|---|---|
| IVisualizer | module interface |
Base interface for all visualizer module interfaces in the INET Framework. Defines common parameters for specifying visualization target and subject modules. Visualizers provide graphical representation of various aspects of network simulation, such as links, traffic flows, routing paths, and network state information. |
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| visualizationTargetModule | string | ||
| visualizationSubjectModule | string |
Properties
| Name | Value | Description |
|---|---|---|
| display | i=block/app |
Source code
// // Interface allows configuring different ~INetworkNodeVisualizer // submodules from INI files. Such a visualizer creates the visual representations // of network nodes. // // @see ~NetworkNodeCanvasVisualizer, ~NetworkNodeOsgVisualizer, ~NetworkNodeVisualizer, ~NetworkNodeVisualizerBase // moduleinterface INetworkNodeVisualizer extends IVisualizer { parameters: @display("i=block/app"); }File: src/inet/visualizer/contract/INetworkNodeVisualizer.ned