Class AreaGraphEdge
Inheritance
object
AreaGraphEdge
Implements
QuikGraph.IEdge<TVertex><Area>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: InsaneScatterbrain.MapGraph
Syntax
public class AreaGraphEdge : IEdge<Area>
Constructors
AreaGraphEdge()
Declaration
public AreaGraphEdge()
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
Type | Description |
---|---|
Area |
Target
Declaration
public Area Target { get; }
Property Value
Type | Description |
---|---|
Area |
Methods
Set(Area, Area)
Declaration
public void Set(Area source, Area target)
Parameters
Type | Name | Description |
---|---|---|
Area | source | |
Area | target |
Implements
QuikGraph.IEdge<TVertex>