Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オンラインのvb.netで線を引く方法の例をたくさん見つけることができます。
ただし、特定の角度で線を描く方法の例は見つかりません。
誰かがこれを行う方法を教えてもらえますか?
sin/を使用して少し計算する必要がありますcos。
sin
cos
x1, y1= ラインの開始位置 angleInRadians= ラジアンに変換されたライン上の角度
x1
y1
angleInRadians
x2 = lineLength * Math.Cos(angleInRadians) + x1 y2 = lineLength * Math.Sin(angleInRadians) + y1
x1次に、( , y1)から ( x2, ) に線を引くことができますy2。
x2
y2