Parse homogeneous vertex coordinates in OBJs

This commit is contained in:
John Senneker
2016-10-04 17:06:31 -04:00
parent 38cbdcd885
commit c3ebdc56de
2 changed files with 25 additions and 0 deletions

View File

@@ -89,6 +89,8 @@ private:
void getVector( std::vector<aiVector3D> &point3d_array );
/// Stores the following 3d vector.
void getVector3( std::vector<aiVector3D> &point3d_array );
/// Stores the following homogeneous vector as a 3D vector
void getHomogeneousVector3( std::vector<aiVector3D> &point3d_array );
/// Stores the following two 3d vectors on the line.
void getTwoVectors3( std::vector<aiVector3D> &point3d_array_a, std::vector<aiVector3D> &point3d_array_b );
/// Stores the following 3d vector.