Show / Hide Table of Contents

Class VertexInfo<T>

Contains information about a vertex.

Inheritance
System.Object
VertexInfo<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public sealed class VertexInfo<T>
    where T : struct
Type Parameters
T

Constructors

VertexInfo()

Creates a new vertex info object.

Declaration
public VertexInfo()

Properties

ContractedNeighbours

Gets or sets the # of contracted neighbours.

Declaration
public int ContractedNeighbours { get; set; }
Property Value
System.Int32

Count

Gets the number of edges.

Declaration
public int Count { get; }
Property Value
System.Int32

Depth

Gets or sets the potential depth.

Declaration
public int Depth { get; set; }
Property Value
System.Int32

Item[Int32]

Gets the edge at the given index.

Declaration
public MetaEdge this[int i] { get; }
Parameters
System.Int32 i

Property Value
MetaEdge

Shortcuts

Gets the shortcuts.

Declaration
public Shortcuts<T> Shortcuts { get; }
Property Value
Shortcuts<T>

Vertex

Gets or sets the vertex.

Declaration
public uint Vertex { get; set; }
Property Value
System.UInt32

Methods

Add(MetaEdge)

Adds a new edge.

Declaration
public void Add(MetaEdge edge)
Parameters
MetaEdge edge

Clear()

Clears this vertex info.

Declaration
public void Clear()
Back to top Built by Itinero, MIT licensed.