Ejemplo n.º 1
0
 public void set(int row, int col, float value)
 {
     original.set(row + row0, col + col0, value);
 }
Ejemplo n.º 2
0
 /**
  * Sets the value of the current element.
  *
  * @param value The element's new value.
  */
 public void set(float value)
 {
     a.set(subRow + minRow, subCol + minCol, value);
 }