示例#1
0
 public MeshCell <T> GetFirst(BoundaryLine boundaryLine)
 {
     insideCells.SetFirstCell((Vector)boundaryLine.Start);
     return(insideCells.GetFirstCell());
 }
示例#2
0
        public IEnumerable <Edge <T> > CycleEdges()
        {
            MeshCell <T> firstCell = cells.GetFirstCell();

            return(FollowBoundaryEdges(firstCell));
        }