Graphics::DrawCircle - Yamamoto0773/Dx9Wrapper GitHub Wiki
::DrawCircle
bool DrawCircle(
float x, float y, float w, float h,
const Color & color
); ...(1)
bool DrawCircle(
const RectF& rectArea,
const Color & color
); ...(2)
効果
塗りつぶし円を描画する。
引数
(1)
x
円の中心のx座標
y
円の中心のy座標
w
円の幅
h
円の高さ
(2)
rectArea
円がぴったり収まる矩形領域の座標
(1) (2)
color
塗りつぶし色
戻り値
描画に成功するとtrue
、次の場合はfalse
を返す。
- 円の幅もしくは高さが0未満
- 描画が開始されていない
- DirectXインターフェースが構築できていない