Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: EdgeInfo<TCell> svgEdgeType(Link<Vertex>, List<TCell>)

  • Declared in: RT.Coordinates.Structure<TCell>
  • Virtual

Declaration

protected virtual EdgeInfo<TCell> svgEdgeType(
    Link<Vertex> edge,
    List<TCell> cells
)

Summary

When overridden in a derived class, determines what type of edge to draw in SVG for a particular edge between cells or at the edge of the grid.

Parameters

Link<Vertex>edge The edge.
List<TCell>cells The set of cells adjacent to this edge, in no guaranteed order.

Returns

An EdgeInfo<TCell> structure that determines the desired edge type via EdgeInfo<TCell>.EdgeType and the adjacent cell(s) via EdgeInfo<TCell>.Cell1 and (optionally) EdgeInfo<TCell>.Cell2.