Class Vertex
A unique Vertex in a CellComplex.
Implements
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)
System.Object.ToString()
Namespace: Elements.Spatial.CellComplex
Assembly: Hypar.Elements.dll
Syntax
public class Vertex : VertexBase<Vertex>, IDistanceTo
Methods
GetCells()
Get associated Cells.
Declaration
public List<Cell> GetCells()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<Cell> |
GetClosestCell(Vector3)
Get the associated Cell that is closest to a point.
Declaration
public Cell GetClosestCell(Vector3 point)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | point |
Returns
Type | Description |
---|---|
Cell |
GetClosestEdge(Vector3)
Get the associated Edge that is closest to a point.
Declaration
public Edge GetClosestEdge(Vector3 point)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | point |
Returns
Type | Description |
---|---|
Edge |
GetClosestFace(Vector3)
Get the associated Face that is closest to a point.
Declaration
public Face GetClosestFace(Vector3 point)
Parameters
Type | Name | Description |
---|---|---|
Vector3 | point |
Returns
Type | Description |
---|---|
Face |
GetEdges()
Get associated Edges.
Declaration
public List<Edge> GetEdges()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<Edge> |
GetFaces()
Get associated Faces.
Declaration
public List<Face> GetFaces()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<Face> |