
openGL
Hustudent20080101
MFC Qt 瑞萨 ARM Linux
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Rotate
Rotate public abstract void glRotatef(float angle, float x, float y, float z)//OpenGL docs. Rotating is what it sounds like. You add a rotation to the matrix making it appears like the mesh are rota转载 2012-11-17 16:31:37 · 676 阅读 · 0 评论 -
MilkShape 3D
MilkShape 3D Milkshape 3D是一个专门制作各种游戏模型的共享软件,是一个非常小巧的3D制作工具,但是却包含了相当丰富的功能,他支持的游戏3D类型一共包括:Half-Life SMD,Quake I MDL,Quake II MD2,Quake III Arena MD3,Genesis3D BDY 1.0,Genesis3D MOT 1.0,Unreal/UT转载 2013-06-07 08:18:05 · 928 阅读 · 0 评论 -
将3ds文件导入openGL框架中
经过网上搜索,实验等方法,将3ds文件导入基于vc++的openGL框架中的玻璃效果的处理的方法总结如下: 1)采用openGL语言自己写出三维实体,并运用融合技术体现玻璃效果出来。 2)用3dsmax建模,以3ds文件格式导出,并直接倒入openGL文档中。 3)用3dsmax建模,以3ds文件格式导出,再用VIEW3D软件转化成.gl和.h两个文件,具体操作如下: 将模型的.h和转载 2013-06-07 08:16:38 · 3078 阅读 · 0 评论 -
gl2jni;gl_code.cpp
/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Yo转载 2012-12-02 09:11:21 · 1114 阅读 · 0 评论 -
Render;
Render Time to get something on the screen, there is two functions used to draw and we have to decide which one to use. The two functions are: public abstract void glDrawArrays(int mode, int first,转载 2012-11-17 14:28:32 · 675 阅读 · 0 评论 -
Translate
Translate public abstract void glTranslatef (float x, float y, float z) //OpenGL docs. A translations added to the matrix makes the mesh appear as it has been moved. Translations are made along the转载 2012-11-17 16:28:22 · 712 阅读 · 0 评论 -
public class Square;square.draw(gl); // ( NEW )
package se.jayway.opengl.tutorial; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.FloatBuffer; import java.nio.ShortBuffer; import javax.microedition.khronos.opengles.GL10; p转载 2012-11-17 15:02:45 · 952 阅读 · 0 评论 -
Edge;Face;Polygon
Edge Edge is a line between two vertices. They are border lines of faces and polygons. In a 3D model an edge can be shared between two adjacent faces or polygons. Transforming an edge affects all con转载 2012-11-17 14:24:39 · 744 阅读 · 0 评论 -
vertices
Look at the image to the right and the code below to match the vertices marked on the image to the code. private float vertices[] = { -1.0f, 1.0f, 0.0f, // 0, Top Left -1.0f, -1.0f, 0.0f, // 1, Bot转载 2012-11-17 14:19:31 · 1172 阅读 · 0 评论 -
CUDA和OpenCL有什么区别?
CUDA和OpenCL有什么区别? 添加评论 分享 默认排序按时间排序 3 个回答 92赞同 反对,不会显示你的姓名 王洋子豪 计算机科学博士生, 关注图形学及并行计算 92 人赞同 从很多方面来看,CUDA和OpenCL的关系都和DirectX与OpenGL的关系很转载 2016-10-24 19:24:22 · 935 阅读 · 0 评论