Esempio n. 1
0
    public void setValue(final int x, final int y, final double dValue) {

      accessor.setValue(x - this.x, y - this.y, dValue);
    }
Esempio n. 2
0
 public void writePixel(final int x, final int y, final double val) throws IOException {
   accessor.setValue(x - this.x, y - this.y, val);
 }