Table of Contents

Interface IEdge

Namespace
Echo.Graphing
Assembly
Echo.dll

Represents a single edge that connects two nodes together in a directed graph.

public interface IEdge
Extension Methods

Properties

Origin

Gets the node that this edge starts at in the directed graph.

INode Origin { get; }

Property Value

INode

Target

Gets the node that this edge points to in the directed graph.

INode Target { get; }

Property Value

INode