摘要:
3D Free Form Deformation Demo Free-form deformation (FFD) is an important tool in computer-assisted geometric design and animation. Well, there are many methods that could be used to deform object... 阅读全文
摘要:
I write this demo just to go though some key concepts of computer graphics. The following features are implemented in this demo: 1) t... 阅读全文
摘要:
In the last few years or months, I have made a lots of technology learning plans. Every time, I want to learn a new kind of technology, I always want to learn from the ZERO. That means I will copy or ... 阅读全文
摘要:
doc2pdf How to convert the web pages and word document to PDF files with text / image format kept? Sometimes, I will do some research on the internet and save some pages locally for afterward review... 阅读全文
摘要:
Get start to write Maya Plug-in with Maya VCWizard. A pdf document included to details how to write a Maya Plug-in with Maya VC Wizard, how to use this plug-in in the Maya software, and also a “H... 阅读全文
摘要:
This sample program shows us how to write a Maya static mesh exporter with c++. At first, I planed to write some additional features on the skin animation, but Maya C++ API seems very complicated f... 阅读全文
摘要:
This program originally come from an Android OpenGLES sample. It display a cube with texture. What I did is I pull the hard code cube mesh data out of the code, and save as an external file “cube.m... 阅读全文
摘要:
This example shows us how to write a FBX file parser with FBX SDK. The mainly parts are how to retrieve vertexes, uv, normal, polygons, polygons' material, textures, skin animation data and so on. ... 阅读全文
摘要:
1) Install gcc on ubuntu: sudo apt-get install gcc g++ sudo apt-get install build-essential 2) Write a Hello.c with VIM like this: #include <stdio.h>int main() { printf(“Hello, gcc\n”); ... 阅读全文
摘要:
1) Use zip command to compress files: zip -r hello.zip hello 2) 寻找.h头文件所在的包, sudo apt-file search XXX.h sudo apt-file search Xf86vmode.h 阅读全文