Show / Hide Table of Contents

    Class Edge

    A Solid Edge.

    Inheritance
    System.Object
    Edge
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Elements.Geometry.Solids
    Assembly: Hypar.Elements.dll
    Syntax
    public class Edge

    Constructors

    Edge(Int64, Vertex, Vertex)

    Construct an Edge

    Declaration
    public Edge(long id, Vertex from, Vertex to)
    Parameters
    Type Name Description
    System.Int64 id
    Vertex from

    The start Vertex of the Edge.

    Vertex to

    The end Vertex of the Edge.

    Properties

    Id

    The Id of the Edge.

    Declaration
    public long Id { get; }
    Property Value
    Type Description
    System.Int64

    Left

    The Left edge.

    Declaration
    public HalfEdge Left { get; }
    Property Value
    Type Description
    HalfEdge

    Right

    The Right edge.

    Declaration
    public HalfEdge Right { get; }
    Property Value
    Type Description
    HalfEdge

    Methods

    ToString()

    Get the string representation of the Edge.

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    Overrides
    System.Object.ToString()