#define _USE_MATH_DEFINES #include <cstdlib> #include <cmath> #include <iostream> #include <GL/glew.h> #include <GL/freeglut.h> // Globals. static float R = 40.0; // Radius of circle. static float X = 50.0; // X-coordinate of center of circle. static float Y = 50.0; // Y-coordinate of center of circle. static const int numVertices = 50; // Number of vertices on circle. static int verticesColors[6 * numVertices]; void generateVertices() { float t = 0; // Angle parameter. for (int i = 0; i < 6 * numVertices; i += 6) { verticesColors[i] = X + R * cos(t); //x verticesColors[i] = Y + R * sin(t); //y verticesColors[i] = 0.0; //z verticesColors[i] = 1.0; //r verticesColors[i] = 0.0; //g verticesColors[i] = 0.0; //b t += 2 * M_PI / numVertices; //angle } } // Drawing routine. void drawScene(void) { glClear(GL_COLOR_BUFFER_BIT); glColor3f(1, 0, 0); glLineWidth(5); glDrawArrays(GL_POLYGON, 0, numVertices); glFlush(); } // Initialization routine. void setup(void) { glClearColor(1.0, 1.0, 1.0, 0.0); glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_COLOR_ARRAY); glColorPointer(3, GL_FLOAT, 6 * sizeof(float), &verticesColors[0]); glVertexPointer(3, GL_FLOAT, 6 * sizeof(float), &verticesColors[3]); } // OpenGL window reshape routine. void resize(int w, int h) { glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0.0, 100.0, 0.0, 100.0, -1.0, 1.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } // Keyboard input processing routine. void keyInput(unsigned char key, int x, int y) { switch (key) { case 27: exit(0); break; default: break; } } // Main routine. int main(int argc, char** argv) { generateVertices(); glutInit(&argc, argv); glutInitContextVersion(4, 3); glutInitContextProfile(GLUT_COMPATIBILITY_PROFILE); glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA); glutInitWindowSize(500, 500); glutInitWindowPosition(100, 100); glutCreateWindow("circle.cpp"); glutDisplayFunc(drawScene); glutReshapeFunc(resize); glutKeyboardFunc(keyInput); glewExperimental = GL_TRUE; glewInit(); setup(); glutMainLoop(); }为什么输出什么也看不到
时间: 2023-08-08 11:04:52 浏览: 126
这段代码没有启用深度测试,导致所有的图形都会被绘制在同一个平面上,看不出效果。你需要在初始化函数 `setup()` 中添加启用深度测试的代码:
```c++
glEnable(GL_DEPTH_TEST);
```
并且在绘制函数 `drawScene()` 中清空深度缓冲区:
```c++
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
```
这样就能够看到绘制出来的圆形了。
相关问题
#include<math.h> #include<process.h> #include <iostream> #define _CRT_SECURE_NO_WARNINGS //#include<stdio.h>这几个头文件分别是什么作用
1. #include<math.h>:这个头文件包含了数学运算的函数和常量,如三角函数、对数函数、指数函数以及常用的数学常量等。
2. #include<process.h>:这个头文件包含了一些与进程(process)相关的函数,如exit()函数用于终止进程、getpid()函数用于获取进程ID等。
3. #include<iostream>:这个头文件包含了输入输出流的相关函数和类,如cout和cin等。
4. #define _CRT_SECURE_NO_WARNINGS:这个宏定义可以用来禁用一些不安全的C/C++函数,如scanf、gets等。在VC++中,如果不使用该宏定义,编译器会给出警告。
5. //#include<stdio.h>:这行代码是一个注释,表示这个头文件被注释掉了,没有被包含进来。stdio.h是一个标准输入输出头文件,包含了一些输入输出函数的定义,如printf、scanf等。
#define _USE_MATH_DEFINES#include <math.h
#define _USE_MATH_DEFINES 是预处理器指令,在C/C++编程中,它告诉编译器使用数学库提供的常数和函数定义。当你包含 `<math.h>` 头文件时,通常会一起使用这个宏,因为这头文件包含了标准数学函数如 sin(), cos(), sqrt() 等的声明。
`<math.h>` 是 C 标准库的一部分,专门用于处理数学运算,比如三角函数、指数、对数、浮点数操作等。通过 `_USE_MATH_DEFINES`,你可以直接使用 math.h 中定义的一些常量,如 M_PI (π) 或者 M_E (自然对数的底e)。
例如,如果你想要计算圆周率 π 的值,可以这样做:
```cpp
#include <iostream>
#include <math.h>
#define _USE_MATH_DEFINES
int main() {
double radius;
std::cout << "Enter the radius of a circle: ";
std::cin >> radius;
double circumference = 2 * M_PI * radius; // 使用 M_PI 来代替 π
std::cout << "The circumference is: " << circumference << std::endl;
return 0;
}
```
阅读全文