Graphics::DrawLine - Yamamoto0773/Dx9Wrapper GitHub Wiki

::DrawLine

bool DrawLine(
  const PointF& begin,
  const PointF& end,
  const Color & color,
  float         lineWidth = 1.0f
); ...(1)

bool DrawLine(
  float         begin_x,
  float         begin_y,
  float         end_x,
  float         end_y,
  const Color & color,
  float         lineWidth = 1.0f
); ...(2)

効果

(1) (2) 線を描画する

引数

(1)
begin
始点の座標

end
終点の座標

(2)
begin_x
始点のx座標

begin_y
終点のy座標

end_x
終点のx座標

end_y
終点のy座標

(1)(2)
color
線の色

lineWidth
線の太さ

戻り値

描画に成功するとtrue、次の場合はfalseを返す。

  • lineWidth0.0未満
  • 描画が開始されていない
  • DirectXインターフェースが構築できていない