LinkBreakCanvasVisualizer.ned
NED File src/inet/visualizer/canvas/linklayer/LinkBreakCanvasVisualizer.ned
| Name | Type | Description |
|---|---|---|
| LinkBreakCanvasVisualizer | simple module |
Visualizes link breaks on a 2D canvas. It displays an icon for each link break in the network. See the documentation of the base module for what constitutes a link break. The icon is positioned at the midpoint of the link. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.visualizer.canvas.linklayer; import inet.visualizer.base.LinkBreakVisualizerBase; import inet.visualizer.contract.ILinkBreakVisualizer; // // Visualizes link breaks on a 2D canvas. It displays an icon // for each link break in the network. See the documentation of the base // module for what constitutes a link break. The icon is positioned at the // midpoint of the link. // // @see ~LinkBreakOsgVisualizer, ~LinkBreakVisualizer, ~LinkBreakVisualizerBase, ~ILinkBreakVisualizer // simple LinkBreakCanvasVisualizer extends LinkBreakVisualizerBase like ILinkBreakVisualizer { parameters: double zIndex = default(2); // Determines the drawing order of figures relative to other visualizers @class(LinkBreakCanvasVisualizer); }