Class AreaGraphEdge
Inheritance
AreaGraphEdge
Syntax
public class AreaGraphEdge : IEdge<Area>
Constructors
AreaGraphEdge()
Declaration
AreaGraphEdge(Area, Area)
Declaration
[Obsolete("Please use the pool manager to get a AreaGraphEdge instance. This constructor will probably be removed in version 2.0. Alternatively, use the parameterless constructor and call the Set method.")]
public AreaGraphEdge(Area source, Area target)
Parameters
Type |
Name |
Description |
Area |
source |
|
Area |
target |
|
Properties
Source
Declaration
public Area Source { get; }
Property Value
Target
Declaration
public Area Target { get; }
Property Value
Methods
Set(Area, Area)
Declaration
public void Set(Area source, Area target)
Parameters
Type |
Name |
Description |
Area |
source |
|
Area |
target |
|
Implements
QuikGraph.IEdge<TVertex>