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 中打印 2 个向量,但我无法使用函数发送指针glutDisplayFunc。
glutDisplayFunc
glutDisplayFunc(graphfunct)一旦创建了窗口,我就有了这个,但我需要发送带有向量地址的 2 个指针来设置坐标。
glutDisplayFunc(graphfunct)
您不能将参数传递给您注册的函数glutDisplayFunc。您必须改用全局可访问的变量。