예제 #1
0
파일: Discrete.cs 프로젝트: thehall45/GGNet
 public Discrete(
     Palettes.Discrete <TKey, TValue> palette,
     TValue na,
     ITransformation <TKey> transformation)
     : this(na, transformation)
 {
     defined      = true;
     this.palette = palette;
 }
예제 #2
0
파일: Discrete.cs 프로젝트: thehall45/GGNet
 public Discrete(
     TValue[] palette,
     int direction,
     TValue na,
     ITransformation <TKey> transformation)
     : this(na, transformation)
 {
     this.palette = new Palettes.Discrete <TKey, TValue>(palette, direction);
 }
예제 #3
0
 public Discrete(
     TValue[] palette,
     int direction,
     TValue na,
     ITransformation <TKey>?transformation)
     : base(transformation)
 {
     this.palette = new Palettes.Discrete <TKey, TValue>(palette, direction);
     this.na      = na;
 }
예제 #4
0
 public Discrete(
     Palettes.Discrete <TKey, TValue> palette,
     TValue na,
     ITransformation <TKey>?transformation)
     : base(transformation)
 {
     defined      = true;
     this.palette = palette;
     this.na      = na;
 }
예제 #5
0
 public LineTypeDiscrete(
     Palettes.Discrete <TKey, LineType> palette,
     ITransformation <TKey>?transformation = null)
     : base(palette, default, transformation)
 {
 }
예제 #6
0
파일: Color.cs 프로젝트: zyhong/GGNet
 public ColorDiscrete(
     Palettes.Discrete <TKey, string> palette,
     ITransformation <TKey> transformation = null)
     : base(palette, default, transformation)
 {
 }
예제 #7
0
 public FillDiscrete(
     Palettes.Discrete <TKey, string> palette,
     ITransformation <TKey>?transformation = null)
     : base(palette, default !, transformation)
 {
 }