Struct Line<TVertex>
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Assembly: AxCommon.dll
Syntax
public struct Line<TVertex> : IPrimitive<TVertex>, IPrimitive
Type Parameters
Constructors
|
Improve this Doc
View Source
Line(TVertex, TVertex)
Declaration
public Line(TVertex vertex0, TVertex vertex1)
Parameters
Type |
Name |
Description |
TVertex |
vertex0 |
|
TVertex |
vertex1 |
|
|
Improve this Doc
View Source
Line(TVertex[])
Declaration
public Line(TVertex[] vertices)
Parameters
Type |
Name |
Description |
TVertex[] |
vertices |
|
Fields
|
Improve this Doc
View Source
Vertex0
Declaration
Field Value
|
Improve this Doc
View Source
Vertex1
Declaration
Field Value
Properties
|
Improve this Doc
View Source
Count
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Item[Int32]
Declaration
public TVertex this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
Methods
|
Improve this Doc
View Source
CopyTo(ICollection<IPrimitive<TVertex>>)
Declaration
public void CopyTo(ICollection<IPrimitive<TVertex>> destination)
Parameters
Type |
Name |
Description |
System.Collections.Generic.ICollection<IPrimitive<TVertex>> |
destination |
|
|
Improve this Doc
View Source
CopyTo(ICollection<IPrimitive>)
Declaration
public void CopyTo(ICollection<IPrimitive> destination)
Parameters
Type |
Name |
Description |
System.Collections.Generic.ICollection<IPrimitive> |
destination |
|
|
Improve this Doc
View Source
ToVertices()
Declaration
public TVertex[] ToVertices()
Returns
Type |
Description |
TVertex[] |
|
Implements