コード例 #1
0
 private void UpdateColors()
 {
     for (int y = 0; y < 16; y++)
     {
         for (int x = 0; x < 16; x++)
         {
             byte r = (byte)(y * 16 + x);
             colorPlacer.UpdateImage(x, y, colors.State.GetColor(r));
         }
     }
 }
コード例 #2
0
 public void DrawCurrent()
 {
     for (int y = 0; y < 16; y++)
     {
         for (int x = 0; x < 16; x++)
         {
             byte r = (byte)(y * 16 + x);
             colorPlacer.UpdateImage(x, y, colors.State.GetColor(r));
         }
     }
 }