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.
我打算创建一个关于绘制角度的软件。而且我真的不知道如何表示正确的三点位置。
例如,我需要一个我引入的值 90,我得到三点的正确位置。
直到此刻,我只需要一些关于如何使用 XAML 正确绘制线或点的帮助或想法。
谢谢。
使用 Path 对象来绘制这些线......和公式:
var CoordinateX = Math.Cos(Angle); var CoordinateY = Math.Sin(角度);
以弧度为单位的角度。