Struct Quad<TVertex>
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Assembly: AxCommon.dll
Syntax
public struct Quad<TVertex> : IPrimitive<TVertex>, IPrimitive
Type Parameters
Constructors
|
Improve this Doc
View Source
Quad(TVertex, TVertex, TVertex, TVertex)
Declaration
public Quad(TVertex vertex0, TVertex vertex1, TVertex vertex2, TVertex vertex3)
Parameters
Type |
Name |
Description |
TVertex |
vertex0 |
|
TVertex |
vertex1 |
|
TVertex |
vertex2 |
|
TVertex |
vertex3 |
|
|
Improve this Doc
View Source
Quad(TVertex[])
Declaration
public Quad(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
|
Improve this Doc
View Source
Vertex2
Declaration
Field Value
|
Improve this Doc
View Source
Vertex3
Declaration
Field Value
Properties
|
Improve this Doc
View Source
BottomLeft
Declaration
public TVertex BottomLeft { get; set; }
Property Value
|
Improve this Doc
View Source
BottomRight
Declaration
public TVertex BottomRight { get; set; }
Property Value
|
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
|
Improve this Doc
View Source
TopLeft
Declaration
public TVertex TopLeft { get; set; }
Property Value
|
Improve this Doc
View Source
TopRight
Declaration
public TVertex TopRight { get; set; }
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
ToPolygons()
Declaration
public Polygon<TVertex>[] ToPolygons()
Returns
Type |
Description |
Polygon<TVertex>[] |
|
|
Improve this Doc
View Source
ToPolygonVertices()
Declaration
public TVertex[] ToPolygonVertices()
Returns
Type |
Description |
TVertex[] |
|
|
Improve this Doc
View Source
ToVertices()
Declaration
public TVertex[] ToVertices()
Returns
Type |
Description |
TVertex[] |
|
Implements