import org.lwjgl.*;
import org.lwjgl.glfw.*;
import org.lwjgl.opengl.*;
public class Main {
public static void main(String[] args) {
// 初始化 GLFW
if (!GLFW.glfwInit()) {
throw new IllegalStateException("Unable to initialize GLFW");
}
// 创建窗口
long window = GLFW.glfwCreateWindow(800, 600, "3D Example", 0, 0);
GLFW.glfwMakeContextCurrent(window);
GL.createCapabilities();
// 渲染循环
while (!GLFW.glfwWindowShouldClose(window)) {
GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
// 绘制 3D 物体(如三角形)
GL11.glBegin(GL11.GL_TRIANGLES);
GL11.glVertex3f(-0.5f, -0.5f, 0);
GL11.glVertex3f(0.5f, -0.5f, 0);
GL11.glVertex3f(0, 0.5f, 0);
GL11.glEnd();
GLFW.glfwSwapBuffers(window);
GLFW.glfwPollEvents();
}
// 清理资源
GLFW.glfwDestroyWindow(window);
GLFW.glfwTerminate();
}
}