1
0
mirror of https://github.com/LearnOpenGL-CN/LearnOpenGL-CN.git synced 2025-08-23 04:35:28 +08:00

Fix the title of Mesh

This commit is contained in:
Meow J
2015-07-14 23:20:55 +08:00
parent c073b8f2d3
commit 9e44b72ce4

View File

@@ -1,6 +1,6 @@
本文作者JoeyDeVries由[Django](http://bullteacher.com/20-mesh.html)翻译自[http://learnopengl.com](http://learnopengl.com/)
# Assimp
# Mesh
使用Assimp可以把多种不同格式的模型加载到程序里但是一旦载入它们就都被储存为Assimp自己的数据结构。我们最终的想法是把这些数据转变为OpenGL可读的数据用来渲染物体。我们从前面的教程了解到一个网格代表一个可绘制实体现在我们就定义一个自己的网格类。