Exemplo n.º 1
0
 public void CellValue(IMatrix m, int row, int col)
 {
     if (row == r || col == c)
     {
     }
     else
     {
         drawer.CellValue(this, row, col);
     }
 }
Exemplo n.º 2
0
 public void CellValue(IMatrix m, int row, int col)
 {
     drawer.CellValue(this, getRow(m, row), col);
 }
Exemplo n.º 3
0
 public void CellValue(IMatrix m, int row, int col)
 {
     d.CellValue(this, row, col);
 }
Exemplo n.º 4
0
 public void CellValue(IMatrix m, int row, int col)
 {
     drawer.CellValue(this, row, getColumn(m, col));
 }