Summary
Describes the type of edge (line segment between two
Vertex objects) to draw in SVG when dealing
with an edge in a 2D structure.
Enum values
| 0 |
The edge is part of the outer perimeter of the structure. The default stroke style is black with thickness
0.1. |
| 1 |
The edge is within the structure, and is passable (there is a Link<T> connecting the cells
on either side). The default stroke style is #ccc with thickness 0.02 and dashed. |
| 2 |
The edge is within the structure, but is not passable (there is no Link<T> connecting the
cells on either side). The default stroke style is black with thickness 0.05. |