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.
我尝试使用 openGL 和 Java 绘制样条曲线。
我现在所拥有的只是一组点。我想要的是一条样条线,它通过这些点中的每一个。
openGL中是否有一个特殊的功能来完成它?
不,更高版本的 OpenGL(v3 及更高版本)确实专注于弃用和删除任何专门的东西。您可以编写镶嵌、几何和顶点着色器的组合,从一组输入点生成镶嵌贝塞尔样条。但是您必须自己编写这些着色器。