通过三次和/或二次贝塞尔曲线近似 n 级贝塞尔曲线

发布于 2024-12-21 04:54:02 字数 300 浏览 3 评论 0原文

我正在尝试绘制 6 级(起点、4 个控制点、终点)贝塞尔曲线,但 API 只为我提供三次和二次曲线方法。

有没有办法仅通过三次或二次来分割或近似 6(或 n)级曲线?


[编辑] 经过一番挣扎,我决定自己编写这个库。看看这里 如何使用Canvas API绘制n级贝塞尔曲线

I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods.

Is there a way to split or approximate the 6 (or n) grade curve ONLY through cubic or quadratic ?


[Edit]
After some struggle I decided to write the library myself. Take a look here How to draw n grade Bézier curve with Canvas API

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷月断魂刀 2024-12-28 04:54:02

一般不会。我建议为 6 个点创建您自己的贝塞尔曲线方法(使用 wiki)。然后用线条画出曲线。

Generally no. I would suggest creating your own Bezier curve method for 6 points (use wiki). And then use lines to draw the curve.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文