public static LinkedList <IntersectionStructure> Create(IntersectionStructure intersection)
 {
     return(Create(
                intersection.ForwardEdgeIntersectionPoint,
                intersection.ForwardEdge,
                intersection.BackwardEdge
                ));
 }
Exemple #2
0
 public ContourStructure(IntersectionStructure intersectionStructureIn)
 {
     IntersectionList = new LinkedList <IntersectionStructure>();
     IntersectionList.AddLast(intersectionStructureIn);
 }