예제 #1
0
        public CCDCells(CCDCells ccdCells)
        {
            int len = ccdCells.Count;

            this.Clear();
            for (int i = 0; i < len; i++)
            {
                this.Add(new Cell(ccdCells[i].m, ccdCells[i].zone));
            }
            inParams = ccdCells.inParams;
        }
예제 #2
0
 public LCCDCells(CCDCells ccdCells)
     : base(ccdCells)
 {
 }