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.
假设您有一个 Points 数组,它们像这样画一条线
但它有点锯齿状,你想让它更平滑。你有什么建议?
谢谢
您可以平均您拥有的点:迭代三个一组中的所有点,并使每个组中的中点更靠近两点之间的中心点。需要对使点更接近多少进行一些试验,但是您可以对数组进行多次平均。
不用绘制点,而是使用这些点绘制一条曲线Graphics.DrawCurve(...)。
Graphics.DrawCurve(...)