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