ホーム > デベロッパ > BREW プログラミング入門 > さらに描画のおはなし > - 2 / 2 -

さらに描画のおはなし - 2 / 2 -

static void Graphix_TranslateUseIGraphics(GraphixApplet* app)
{
  IGraphics*  graphics = app->g;
  AEERect  rect;

  // 画面を緑色でクリア
  IGRAPHICS_SetBackground(graphics,0xCC,0xFF,0xCC);
  IGRAPHICS_ClearViewport(graphics);

  // 塗り潰しモードを設定
  IGRAPHICS_SetFillMode(graphics,TRUE);

  // 描画色を赤色に設定
  IGRAPHICS_SetColor(graphics,0xFF,0x88,0x88,0x00);
  IGRAPHICS_SetFillColor(graphics,0xFF,0xCC,0xCC,0x00);

  // 四角形を描画
  rect.x = 10;
  rect.y = 10;
  rect.dx = 60;
  rect.dy = 50;
  IGRAPHICS_DrawRect(graphics,&rect);

  // トランスレート量を設定
  IGRAPHICS_Translate(graphics,-40,-40);

  // 描画色を青色に設定
  IGRAPHICS_SetColor(graphics,0x88,0x88,0xFF,0x00);
  IGRAPHICS_SetFillColor(graphics,0xCC,0xCC,0xFF,0x00);

  // 四角形を描画
  IGRAPHICS_DrawRect(graphics,&rect);

  // トランスレートをリセット
  IGRAPHICS_Translate(graphics,40,40);

  // 画面更新
  IGRAPHICS_Update(graphics);
  return;
}