vs配置opengl
程序员文章站
2022-03-22 08:29:35
新建项目nuget下载安装nupengl.core测试代码#includevoid init(void){glClearColor(1.0, 1.0, 1.0, 0.0);glMatrixMode(GL_PROJECTION);gluOrtho2D(0.0, 200.0, 0.0, 150.0);}void lineSegement(void){glClear(GL_COLOR_BUFFER_BIT);glColor3f(0.0,....
- 新建项目
- nuget下载安装nupengl.core
- 测试代码
#include<GL/glut.h>
void init(void)
{
glClearColor(1.0, 1.0, 1.0, 0.0);
glMatrixMode(GL_PROJECTION);
gluOrtho2D(0.0, 200.0, 0.0, 150.0);
}
void lineSegement(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 0.4, 0.2);
glBegin(GL_LINES);
glVertex2i(180, 15);
glVertex2i(10, 145);
glEnd();
glFlush();
}
void main(int argc, char**argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowPosition(50, 100);
glutInitWindowSize(400, 300);
glutCreateWindow("An Example OpenGl Program");
init();
glutDisplayFunc(lineSegement);
glutMainLoop();
}
本文地址:https://blog.csdn.net/qq_28510897/article/details/107290001
推荐阅读
-
Spring Cloud微服务架构的构建:分布式配置中心(加密解密功能)
-
mysql 8.0 安装配置方法教程
-
PyQt5的安装配置过程,将ui文件转为py文件后显示窗口的实例
-
mysql 5.7.16 winx64安装配置方法图文教程
-
VS2010写的程序在自己电脑可以运行、其他电脑上不能运行的解决方案
-
解决spring boot 1.5.4 配置多数据源的问题
-
如何利用iCloud Drive同步Xcode配置详解
-
SpringBoot + Spring Security 基本使用及个性化登录配置详解
-
Windows下JSP开发环境的配置
-
Spring Boot中配置文件application.properties使用