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.
是否可以移动或旋转单个顶点或顶点集合(例如显示列表),而不是使用 LWJGL 更改每个顶点的坐标?
也许类似GL11.glTranslatef(...)但仅适用于场景的移动部分。此外,J 不知道如何旋转某些东西。
GL11.glTranslatef(...)
您可以使用带有顶点着色器的 OpenGL 2.0 来执行此操作。但它不像 glTranslatef 那样简单。
谷歌:OpenGL 2.0 Vertex Transformation。它允许旋转、缩放和移动顶点。
OpenGL 2.0 Vertex Transformation