Class GeometricEdge
A geometric edge.
Inheritance
System.Object
GeometricEdge
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 class GeometricEdge
Constructors
GeometricEdge(UInt32, UInt32, UInt32, UInt32[], Boolean, ShapeBase)
Creates a new geometric edge.
Declaration
public GeometricEdge(uint id, uint from, uint to, uint[] data, bool edgeDataInverted, ShapeBase shape)
Parameters
|
System.UInt32
id
|
|
System.UInt32
from
|
|
System.UInt32
to
|
|
System.UInt32[]
data
|
|
System.Boolean
edgeDataInverted
|
|
ShapeBase
shape
|
Properties
Data
Gets the edge data.
Declaration
public uint[] Data { get; }
Property Value
|
System.UInt32[]
|
DataInverted
Returns true if the edge data is inverted relative to the direction of this edge.
Declaration
public bool DataInverted { get; }
Property Value
|
System.Boolean
|
From
Gets the vertex at the beginning of this edge.
Declaration
public uint From { get; }
Property Value
|
System.UInt32
|
Id
Gets the edge id.
Declaration
public uint Id { get; }
Property Value
|
System.UInt32
|
Shape
Gets the shape.
Declaration
public ShapeBase Shape { get; }
Property Value
|
ShapeBase
|
To
Gets the vertex at the end of this edge.
Declaration
public uint To { get; }
Property Value
|
System.UInt32
|