How do I implement a B#233;zier curve in C++?(如何在 C++ 中实现贝塞尔曲线?)
问题描述
我想实现一个贝塞尔曲线.我以前在 C# 中做过这个,但我完全不熟悉 C++ 库.我应该如何创建二次曲线?
I'd like to implement a Bézier curve. I've done this in C# before, but I'm totally unfamiliar with the C++ libraries. How should I go about creating a quadratic curve?
void printQuadCurve(float delta, Vector2f p0, Vector2f p1, Vector2f p2);
显然我们需要使用线性插值,但标准数学库中是否存在这种方法?如果没有,我在哪里可以找到它?
Clearly we'd need to use linear interpolation, but does this exist in the standard math library? If not, where can I find it?
我使用的是 Linux.
I'm using Linux.
推荐答案
您之前是否使用过 C# 库?
Did you use a C# library earlier?
在 C++ 中,没有贝塞尔曲线的标准库函数可用(目前).你当然可以推出自己的(CodeProject sample)或寻找数学图书馆.
In C++, no standard library function for Bezier curves is available (yet). You can of course roll your own (CodeProject sample) or look for a math library.
这篇 博文很好地解释了这个想法,但在 Actionscript 中.翻译应该没有太大问题.
This blogpost explains the idea nicely but in Actionscript. Translation should not be much of a problem.
这篇关于如何在 C++ 中实现贝塞尔曲线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C++ 中实现贝塞尔曲线?


- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 静态初始化顺序失败 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 从python回调到c++的选项 2022-11-16