Beispiel #1
0
 private void InitBlock(SamplingGrid enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Beispiel #2
0
 public AreaGrid(SamplingGrid enclosingInstance, int width, int height)
 {
     this.InitBlock(enclosingInstance);
     this.xLine = new Line[width];
     this.yLine = new Line[height];
 }