1

C# コードを使用してドローにアークを追加したいと考えています。構文は次のとおりです。

AddArc(
    int x,
    int y,
    int width,
    int height,
    float startAngle,
    float sweepAngle)

誰かが幅、高さの開始点、掃引角度について説明できますか?

ありがとうございました。

4

1 に答える 1

0

こういう返しは苦手だけど…

からGraphicsPath.AddArc Method (Int32, Int32, Int32, Int32, Single, Single)

width  
The width of the rectangular region that defines the ellipse from which the arc is drawn.

height
The height of the rectangular region that defines the ellipse from which the arc is drawn.

startAngle 
The starting angle of the arc, measured in degrees clockwise from the x-axis.

sweepAngle  
The angle between startAngle and the end of the arc.
于 2013-12-07T16:52:33.957 に答える