Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Struct: RT.Coordinates.Edge

Summary

Describes a directed edge going from one vertex to another.

Constructors

Edge(Vertex start, Vertex end)
Describes a directed edge going from one vertex to another.

Instance methods

bool
Equals(Edge other)
  • Implements: IEquatable<Edge>.Equals(Edge)
Refer to the documentation for IEquatable<Edge>.Equals.
bool
Equals(object obj)
  • Overrides: object.Equals(object)
Refer to the documentation for object.Equals.
int
  • Overrides: object.GetHashCode()
Refer to the documentation for object.GetHashCode.
Link<Vertex>Converts this (directed) edge to an (undirected) link connecting the vertices.
string
  • Overrides: object.ToString()
Refer to the documentation for object.ToString.

Operators

bool
operator==(Edge one, Edge two)
Equality comparison operator.
bool
operator!=(Edge one, Edge two)
Inequality comparison operator.

Instance properties

VertexThe end vertex of the edge.
EdgeReturns a new edge connecting the same vertices, but in the opposite direction.
VertexThe start vertex of the edge.