摘要: 1 // first_3D.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 8 // 将立方体的八个顶点保存到一个数组里面 9 static const GLfloat vertex_list[8][3] = { 10 -0.5f, -0.5f, -0.5f, 11 0.5f, -0.5f, -0.5f, 12 -0.5f, 0.5f, -0.5f, 13 0.5f, 0.5f, -0.5f, 14 -0.5f, -0.... 阅读全文
posted @ 2014-03-17 14:10 一只快乐的程序猿[Hui] 阅读(1566) 评论(0) 推荐(0) 编辑