Пример #1
0
 public VideoFarbe(short farbno, byte vg1, byte vg2, byte vg3, byte hg1, byte hg2, byte hg3)
 {
     vgColor     = new NTColor(vg1, vg2, vg3);
     hgColor     = new NTColor(hg1, hg2, hg3);
     this.farbno = farbno;
 }
Пример #2
0
 public VideoFarbe(NTColor vg, NTColor hg, short farbno)
 {
     vgColor     = vg;
     hgColor     = hg;
     this.farbno = farbno;
 }