This class is used for sampling grid It allows one area to have a different size from another area
Esempio n. 1
0
 private void InitBlock(SamplingGrid enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Esempio n. 2
0
 public AreaGrid(SamplingGrid enclosingInstance, int width, int height)
 {
     InitBlock(enclosingInstance);
     xLine = new Line[width];
     yLine = new Line[height];
 }