コード例 #1
0
ファイル: ColorScales.cs プロジェクト: And-G/Magellan
        public ColorScales( CSVReader reader )
        {
            scales = new ColorScale[Count];
            for ( int i=0; i<Count; ++i ) {
                scales[i] = new ColorScale( "" );
            }
            shades = new int[8192];

            ReadFrom( reader );
        }
コード例 #2
0
ファイル: ColorScales.cs プロジェクト: And-G/Magellan
 public ColorScales()
 {
     scales = new ColorScale[Count];
     for ( int i=0; i<Count; ++i ) {
         scales[i] = new ColorScale( "" );
     }
     shades = new int[8192];
     recalc = true;
 }