コード例 #1
0
 public void CellValue(IMatrix m, int row, int col)
 {
     if (row == r || col == c)
     {
     }
     else
     {
         drawer.CellValue(this, row, col);
     }
 }
コード例 #2
0
 public void CellValue(IMatrix m, int row, int col)
 {
     drawer.CellValue(this, getRow(m, row), col);
 }
コード例 #3
0
 public void CellValue(IMatrix m, int row, int col)
 {
     d.CellValue(this, row, col);
 }
コード例 #4
0
 public void CellValue(IMatrix m, int row, int col)
 {
     drawer.CellValue(this, row, getColumn(m, col));
 }