资源简介
opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习
代码片段和文件信息
#include
#include
GLsizei winWidth = 800 winHeight = 600; // 窗口的大小
GLfloat red = 1.0 green = 0.0 blue = 0.0; //颜色
GLenum fillMode = GL_SMOOTH;
bool LineCircleRectanger;
int xstartystartxendyend;//鼠标的坐标
float r;//圆的半径
int NUM=200;// 定义绘制圆时用的顶点数(用顶点组成的线段逼近圆)(new)
void fillOption(GLint s){
//glutPostRedisplay();
}
void graphics(GLint selectedOption)
{
switch (selectedOption) {
case 1:Line=trueCircle=falseRectanger=false; break;
case 2:Line=falseCircle=trueRectanger=false; break;
case 3:Line=falseCircle=falseRectanger=true; break;
}
// glutPostRedisplay ( );
}
void colorselection(GLint selectedOption)
{
switch (selectedOption) {
case 1:red = 1.0 green = 0.0 blue = 0.0; break;
case 2:red = 0.0 green = 1.0 blue = 0.0; break;
case 3:red = 0.0 green = 0.0 blue = 1.0; break;
}
// glutPostRedisplay ( );
}
void mousemove(int xmoveint ymove)
{
if(Line){
glEnable(GL_COLOR_LOGIC_OP);
glLogicOp(GL_XOR);
glBegin(GL_LINES);
glVertex2i(xstartystart);
glVertex2i(xendyend);
glEnd();
xend=xmove;
yend=winHeight-ymove;
glBegin(GL_LINES);
glVertex2i(xstartystart);
glVertex2i(xendyend);
glEnd();
glFlush();
}
else if(Rectanger){
glEnable(GL_COLOR_LOGIC_OP);//启动逻辑异或
glLogicOp(GL_XOR);
glBegin(GL_LINE_LOOP);
glVertex2i(xstartystart);
glVertex2i(xstartyend);
glVertex2i(xendyend);
glVertex2i(xendystart);
//glVertex2i(xstartystart);
glEnd();
xend=xmove;
yend=winHeight-ymove;
glBegin(GL_LINE_LOOP);
glVertex2i(xstartystart);
glVertex2i(xstartyend);
glVertex2i(xendyend);
glVertex2i(xendystart);
// glVertex2i(xstartystart);
glEnd();
glFlush();
}
else if(Circle){
glEnable(GL_COLOR_LOGIC_OP);//启动逻辑异或
glLogicOp(GL_XOR);
r=sqrt((xstart-xend)*(xstart-xend)+(ystart-yend)*(ystart-yend)*1.0)/2; //计算圆的半径
glBegin(GL_LINE_LOOP); // 绘制圆(new)
for(int i=0; i {
glVertex2f((xstart+xend)/2+r*float(sin(2*3.14*i/NUM))(ystart+yend)/2+ r*float(cos(2*3.14*i/NUM)));
}
glEnd(); // 圆绘制结束
xend=xmove;
yend=winHeight-ymove;
r=sqrt((xstart-xend)*(xstart-xend)+(ystart-yend)*(ystart-yend)*1.0)/2; //计算圆的半径
glBegin(GL_LINE_LOOP); // 绘制圆(new)
for(int i=0; i {
glVertex2f((xstart+xend)/2+r*float(sin(2*3.14*i/NUM))(ystart+yend)/2+ r*float(cos(2*3.14*i/NUM)));
}
glEnd(); // 圆绘制结束
glFlush();
}
}
void mouseud (int btnint stateint xint y)
{
if(Line){
if
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37376 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\Debug\interGraphics.exe
文件 350084 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\Debug\interGraphics.ilk
文件 420864 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\Debug\interGraphics.pdb
文件 10910 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\BuildLog.htm
文件 24964 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\Graphics.obj
文件 663 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\interGraphics.exe.em
文件 728 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\interGraphics.exe.em
文件 621 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\interGraphics.exe.intermediate.manifest
文件 67 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\mt.dep
文件 44032 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\vc90.idb
文件 53248 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug\vc90.pdb
文件 7686 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Graphics.cpp
文件 3932 2009-10-26 18:03 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\interGraphics.vcproj
文件 1427 2009-10-27 20:19 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\interGraphics.vcproj.HP-B23A3C94F490.hp.user
文件 732160 2009-10-27 20:19 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics.ncb
文件 905 2009-10-26 18:02 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics.sln
..A..H. 13312 2009-10-27 20:19 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics.suo
目录 0 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics\Debug
目录 0 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\Debug
目录 0 2009-10-27 19:44 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics\interGraphics
目录 0 2009-10-26 18:03 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习\interGraphics
目录 0 2018-11-30 05:27 opengl的鼠标画线,圆,矩形,还有个菜单,很适合opengl初学者学习
----------- --------- ---------- ----- ----
1702979 22
相关资源
-
The Tao fr
amework 2.1.0 - OPENGL绘制三维地形图
- OpenGL实现对三维对象的旋转、平移和
- 在opengl里读取catia文件
- opengl二维图形转换为三维图形
- 三维模型文件中的OBJ格式在OpenGL中的
- opengl自行车动画实验报告
- OPENGL开发的茶壶光影、渲染、旋转、
- opengl 球体
- 基于OpenGL的场景迷宫漫游可以碰撞检
- opengl鼠标控制视角 不透明度改变 光照
- 3D 模型OpenGL显示,旋转、缩放,平移
- 利用OpenGL和ArcGIS处理得到的坐标数据
- QT绘制简单OpenGL图形
- opengl相机类
- glut.dll和glut32.dll
- opengl渲染到纹理技术
- 3d贪吃蛇游戏
- opengl头文件和库glut工具包
- 圆的扫描转换_计算机专业_OpenGL实验
- 用opengl编写的二十面体
- 基于51单片机12864画点画线画圆的程序
- opengl 小球的碰撞和反弹模拟
- 3DS文件导入opengl程序
- 用OpenGL绘制汽车并控制
- GLSL 基础介绍OpenGLES 2.0
- 开源3D游戏引擎 HXEngine
- opengl光照、纹理映射和键盘控制
- OpenGL 作图 - 圆环
- opengl画圆环,并且能够进行x及y方向的
评论
共有 条评论