gpt4 book ai didi

c++ - 带有 OpenGL 的 Visual C++ 中的拉格朗日多项式

转载 作者:行者123 更新时间:2023-11-30 04:36:40 25 4
gpt4 key购买 nike

如何使用 OpenGL 库在 Visual C++ 中创建和打印拉格朗日多项式?非常感谢。

最佳答案

可能有不同的方法,但猜测最简单易懂的方法之一可能是这样的:

float f(float x)
{
// calculate y for f(x) here
return y;
}

void draw()
{
glBegin();
for(float x = 0; x < 10; x += 0.1)
glVertex(x, f(x), 0);
glEnd();
}

请注意,有不同的绘制图形的方法(例如缓存所有内容或传递数组等),具有不同的性能罪魁祸首和优势。在我的示例中,缩放等必须在外部使用 View 和投影矩阵完成。

关于c++ - 带有 OpenGL 的 Visual C++ 中的拉格朗日多项式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4462128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com