Пример #1
0
            private int            current; // <- index into DrawingInfo table

            public BackToFrontEnumerator(SortedDrawList sortedDrawList)
            {
                i                   = sortedDrawList.Count - 1;
                current             = 0;
                this.sortedDrawList = sortedDrawList;
            }
Пример #2
0
            private int            current; // <- index into DrawingInfo table

            public FrontToBackEnumerator(SortedDrawList sortedDrawList)
            {
                i                   = 0;
                current             = 0;
                this.sortedDrawList = sortedDrawList;
            }
Пример #3
0
 public BackToFrontEnumerable(SortedDrawList sortedDrawList)
 {
     this.sortedDrawList = sortedDrawList;
 }
Пример #4
0
 public FrontToBackEnumerable(SortedDrawList sortedDrawList)
 {
     this.sortedDrawList = sortedDrawList;
 }