This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*+++++++++++++++++++++++++++++++++++++++++ | |
Some sample code showing how to do basic vector operations with assimp | |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ | |
// create a 3d Vector | |
aiVector3D a(1.0f,2.0f,3.0f); | |
aiVector3D b=a; //copy vector to another | |
b.x=0.f; //assign value to x component of b | |
//out put a vector |