Beispiel #1
0
 /// New graph please
 public PixelGraph(float[] data, int width, int height) : base(width, height)
 {
     this._sampler = new AveragedData(data, width);
     this._proc    = new PixelPusher(this, 0xffffffff);
     this.Data     = data;
 }
 /// New graph please
 public PixelGraph(float[] data, int width, int height) : base(width, height) {
   this._sampler = new AveragedData(data, width);
   this._proc = new PixelPusher(this, 0xffffffff);
   this.Data = data;
 }