• 大小: 0.30M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: c++  c  VC++  三维  源代码  

资源简介

三维几何零件图形程序-OpenGL-VC 源代码,识别几何形状程序,能识别出几何图形的形状,如正方形、长方形、圆形等。

资源截图

代码片段和文件信息

// opengl_1.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include 
#include 
#include 
#include 
#include 


// Rotation amounts
static GLfloat xRot = 0.0f;
static GLfloat yRot = 0.0f;
static GLfloat zoom = 2.0f;


//画图
void DrawScene(void)
{

glClearColor(0.0f0.0f0.0f1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

glMatrixMode(GL_MODELVIEW);

glLoadIdentity();

glShadeModel( GL_FLAT);

glPolygonMode( GL_FRONT_AND_BACKGL_FILL);


///////////////////////////////////////////////////////////
GLUquadricObj* quadObj;
 
//画圆柱

    glNewList(3 GL_COMPILE);
glColor3f(0.0f0.7f0.7f);
quadObj=gluNewQuadric();
gluQuadricDrawstyle(quadObjGL

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     176206  2004-07-18 17:11  三维几何零件图形程序-OpenGL-VC++源代码\Debug\opengl_1.exe

     文件       6509  2004-07-18 17:11  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.cpp

     文件       4560  2004-07-12 15:12  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.dsp

     文件        541  2004-07-12 18:45  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.dsw

     文件      66560  2004-07-18 17:17  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.ncb

     文件      52736  2004-07-18 17:17  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.opt

     文件       1329  2004-07-18 17:11  三维几何零件图形程序-OpenGL-VC++源代码\opengl_1.plg

     文件       1220  2004-07-12 15:12  三维几何零件图形程序-OpenGL-VC++源代码\ReadMe.txt

     文件        295  2004-07-12 15:12  三维几何零件图形程序-OpenGL-VC++源代码\StdAfx.cpp

     文件        667  2004-07-12 15:12  三维几何零件图形程序-OpenGL-VC++源代码\StdAfx.h

     目录          0  2010-05-25 09:03  三维几何零件图形程序-OpenGL-VC++源代码\Debug

     目录          0  2010-05-25 09:03  三维几何零件图形程序-OpenGL-VC++源代码

----------- ---------  ---------- -----  ----

               310623                    12


评论

共有 条评论