PFVertexGetAdjacent Method |
Use this to create adjacency table inside each vertex.
ATTENTION this changes the vertex in place
Goes through the edges and puts neighbors in vertexes
This assumes the lines are unique .... No duplicates
Namespace:
PolyFramework
Assembly:
PolyFramework (in PolyFramework.dll) Version: 0.5.0.0 (0.5.0.0)
Syntaxpublic static void GetAdjacent(
IList<PFVertex> points,
IList<PFEdge> lines
)
Public Shared Sub GetAdjacent (
points As IList(Of PFVertex),
lines As IList(Of PFEdge)
)
public:
static void GetAdjacent(
IList<PFVertex^>^ points,
IList<PFEdge^>^ lines
)
static member GetAdjacent :
points : IList<PFVertex> *
lines : IList<PFEdge> -> unit
Parameters
- points
- Type: System.Collections.GenericIListPFVertex
[Missing <param name="points"/> documentation for "M:PolyFramework.PFVertex.GetAdjacent(System.Collections.Generic.IList{PolyFramework.PFVertex},System.Collections.Generic.IList{PolyFramework.PFEdge})"]
- lines
- Type: System.Collections.GenericIListPFEdge
[Missing <param name="lines"/> documentation for "M:PolyFramework.PFVertex.GetAdjacent(System.Collections.Generic.IList{PolyFramework.PFVertex},System.Collections.Generic.IList{PolyFramework.PFEdge})"]
See Also