CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - OpenGL 教程

搜索资源列表

  1. GLSL_Tutorial

    0下载:
  2. OpenGL GLSL 初学教程,中英版都有
  3. 所属分类:File Formats

    • 发布日期:2017-12-08
    • 文件大小:1060312
    • 提供者:NewYork
  1. VC-ProgrammingOpenGL-articles

    0下载:
  2. OpenGL作为一种三维工具软件包,在交互式三维图形建模能力编程方面有着无可比拟的优越性。本教程主要介绍了在VC平台上OpenGL编程的基本方法。-OpenGL as a 3D tool package has incomparable superiority in the modeling capabilities of interactive 3D graphics programming. This tutorial introduces the basic method in the V
  3. 所属分类:OpenGL program

    • 发布日期:2017-06-16
    • 文件大小:25294784
    • 提供者:牛凯
  1. NeheChm

    0下载:
  2. Opengl的基础教程。针对没有基础的学者。-Opengl basic course。No basis for the scholars.
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-15
    • 文件大小:3906172
    • 提供者:北极
  1. miniOpenglImage(glsl)

    0下载:
  2. 使用OPENGL的GLSL实现纹理贴图, 可以作秋GLSL的入门好教程。-The use the OPENGL of GLSL texture mapping, Can be used for autumn GLSL entry tutorial.
  3. 所属分类:OpenGL program

    • 发布日期:2015-03-30
    • 文件大小:437248
    • 提供者:li
  1. Daquan-3D-game-development

    0下载:
  2. 3D游戏开发大全。应用OpenGL开具包进行三维开发的教程。-Daquan 3D game development. OpenGL application issued by the package, three-dimensional development of the tutorial.
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-09
    • 文件大小:1658391
    • 提供者:尹海文
  1. tutors

    0下载:
  2. opengl示例教程 opengl 原理-the opengl Example tutorial opengl principle
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-04
    • 文件大小:1204421
    • 提供者:zhadan
  1. NeHeOpenGL

    0下载:
  2. 本文件为原始的NEHE教程主要讲解如何使用opengl开发图形软件-the aircle is about how to use opengl to develop software.
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-24
    • 文件大小:7944322
    • 提供者:liyedong
  1. OpenGLscreendddd

    0下载:
  2. 用opengl写的一个屏保教程,是pdf文件-Write a screensaver with opengl tutorial is a pdf file
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-06
    • 文件大小:55667
    • 提供者:陈大军
  1. NeHeCHS

    0下载:
  2. OpenGL的完整教程。开发环境VC.NET.帮助你尽快掌握OpenGL.-Complete tutorial on OpenGL. Development the environment VC.NET. Help you quickly master the OpenGL.
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-29
    • 文件大小:12071330
    • 提供者:yanxutao
  1. texture-and-light

    0下载:
  2. 这是一个关于opengl的光和纹理的学习教程,对于刚入门的人会有帮助- a course about the study of light and texture by opengl
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-11
    • 文件大小:2770787
    • 提供者:janssen
  1. opengl_qt_test

    1下载:
  2. 本次试验的目的很简单,只是显示一个窗口,可以通过F1键值来切换全屏显示和普通屏显示,并当按下ESE键时退出程序。窗口的颜色背景和透视效果(其实该试验都没用上)等用opengl来实现,主要是为后面的学习写了个框架,其实这里主要是重写了3个函数:initializeGL() paintGL() resizeGL() 这3个函数都是QGLWidget内部的虚函数。 本次试验是按照网络上NeHe写的最著名的opengl英文教程:http://nehe.gamedev.net/ 和对应的中文教程:ht
  3. 所属分类:OpenGL program

    • 发布日期:2017-03-31
    • 文件大小:241030
    • 提供者:wuwei
  1. opengl_qt_simple_draw

    0下载:
  2. 本文来讲讲怎样使用opengl来画平面几何图形,这一节本来是很简单的,因为某些问题都弄大半天了。当然,这还是按照NeHe的教程来的学习的。 这次实现的功能是在窗口中画一个三角形,一个矩形,一个圆形。 下面来看看怎么绘制平面几何图形。在设置好需要画的几何图形的属性后,比如颜色信息,就以glBegin()开始,以glEnd()结束,glBegin()中的参数为所画几何图形的类型,比如说GL_ TRIANGLES代表三角形,GL_QUADS为矩形等等。 在glBegin()
  3. 所属分类:OpenGL program

    • 发布日期:2017-03-31
    • 文件大小:251669
    • 提供者:wuwei
  1. opengl_qt_draw3D

    0下载:
  2. 四棱锥由5个面构成一个封闭的立体图,其中4个共顶点的侧面是三角形,底面是个四边形。如果我们要绘制一个3D的四棱锥只需要绘制这5个面即可,绘制的方法和前一篇文章OpenGL_Qt学习笔记之_03(平面图形的着色和旋转)的相同。只不过这里的顶点坐标是3维的,所以图像深度那一维不一定为0。因此我们可以事先计算好四棱锥各个顶点的坐标,这对学过立体几何的人来说应该是小case了。然后绘制每个面就可以。 注意,在opengl中绘制每个面时,所有面给出的顶点的顺序都要按照逆时针或者顺时针(我这里采用的
  3. 所属分类:OpenGL program

    • 发布日期:2017-11-08
    • 文件大小:309471
    • 提供者:wuwei
  1. 7785556

    0下载:
  2. OpenGL三维图形程序设计基础教程 OpenGL三维图形程序设计基础教程-OpenGL 3 d graphics program design basis curriculum
  3. 所属分类:OpenGL program

    • 发布日期:2017-11-12
    • 文件大小:781154
    • 提供者:小样
  1. shiquyouxi

    0下载:
  2. NeHe教程,在win32下用OpenGL做的拾取游戏。适合OpenGL入门,涉及Alpha混合, Alpha测试, 排序,教的东西很多-The NeHe tutorial using OpenGL under win32 pickup game. Suitable for the OpenGL entry-involving Alpha Blending, Alpha testing, sorting, taught a lot of things
  3. 所属分类:2D Graphic

    • 发布日期:2017-11-28
    • 文件大小:1665319
    • 提供者:zhangsan
  1. OpenGLNeHe

    0下载:
  2. NeHe的opengl完全教程,全电子书,web版,有许多可学习的地方,C语言为平台-NeHe opengl completely tutorials, e-books, web version, learning C language as a platform
  3. 所属分类:OpenGL program

    • 发布日期:2017-11-17
    • 文件大小:3815726
    • 提供者:胡佳俊
  1. colorcircle

    0下载:
  2. 根据NeHe教程自己编写的五彩环,可以前后左右移动,OpenGL程序,大家都来看看。OpenGL编译环境一定要配置好。-NeHe tutorial to write your own colorful ring can move around, OpenGL program, take a look at everyone. OpenGL compilation environment must be configured.
  3. 所属分类:OpenGL program

    • 发布日期:2017-11-17
    • 文件大小:3069354
    • 提供者:xiexin
  1. Visual_CPPMFC

    0下载:
  2. 这是opengl和mfc编程的入门教程、通过实例讲解了在mfc中如何调用opengl平台、具有很好的帮助-This is the introductory tutorial opengl and mfc programming examples to explain how to call in mfc opengl platform, with good help
  3. 所属分类:software engineering

    • 发布日期:2017-12-03
    • 文件大小:271438
    • 提供者:李伟
  1. cylinder

    0下载:
  2. 用opengl画圆柱,基于nehe教程,十分简单易懂-With opengl painting cylindrical, based on nehe tutorial, very simple and easy to understand
  3. 所属分类:3D Graphic

    • 发布日期:2017-12-06
    • 文件大小:6502
    • 提供者:史洪华
  1. OpenGL_tutorial

    0下载:
  2. openGL的入门教程,由例子逐步了解openGL的基本原理和基本函数的应用,非常适合于初学者入门!-OpenGL introductory tutorial by example to develop an understanding of the basic principles and the basic function of openGL, very suitable for beginners entry!
  3. 所属分类:File Formats

    • 发布日期:2017-12-08
    • 文件大小:258032
    • 提供者:苏哲轩
« 1 2 ... 28 29 30 31 32 3334 35 36 »
搜珍网 www.dssz.com