示例#1
0
            protected Iterator(Iterator other)
            {
                if (other == null)
                {
                    throw new NullReferenceException("Iterator construction with null reference.");
                }

                cycle  = other.cycle;
                offset = other.offset;
            }
示例#2
0
 internal IteratorCCW(DirectionCycle cycle, int offset)
     : base(cycle, offset)
 {
 }
示例#3
0
 protected Iterator(DirectionCycle cycle, int offset)
 {
     this.cycle  = cycle;
     this.offset = offset;
 }