예제 #1
0
파일: ContactData.cs 프로젝트: PeterZs/TVGL
 public IntersectionGroup(GroupOfLoops posSideGroupOfLoops, GroupOfLoops negSideGroupOfLoops,
                          IEnumerable <PolygonLight> intersection2D, int index)
 {
     GroupOfLoops = new HashSet <GroupOfLoops> {
         posSideGroupOfLoops, negSideGroupOfLoops
     };
     Intersection2D = new List <PolygonLight>(intersection2D);
     Index          = index;
 }
예제 #2
0
 public IntersectionGroup(GroupOfLoops posSideGroupOfLoops, GroupOfLoops negSideGroupOfLoops,
                          List <Polygon> intersection2D, int index)
 {
     GroupOfLoops = new HashSet <GroupOfLoops> {
         posSideGroupOfLoops, negSideGroupOfLoops
     };
     Intersection2D = intersection2D;
     Index          = index;
 }