通过贝塞尔曲线绘制路径
我有一个任务 - 绘制平滑曲线
输入:一组点(他们实时添加)
当前解决方案:我使用每4个点来绘制qubic贝塞尔曲线(1 - strart 、2 和 3 - 控制点,4 - 结束)。每条曲线的终点是下一条曲线的起点。
问题:在曲线连接处我经常出现“断裂”(角度),
你能告诉我,如何将我的点连接得更平滑吗?
谢谢!
I have a task - draw smooth curve
input: set of points (they added in realtime)
current solution: I use each 4 points to draw qubic Bezier curve (1 - strart, 2 and 3rd - control points, 4- end). End point of each curve is start point for the next one.
problem: at the curves connection I often have "fracture" (angle)
Can you tell me, how to connect my points more smooth?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是一些可以帮助您的参考资料:
Here is few references which can help you: