Add packages and update others
This commit is contained in:
17
assimp/5.x/test_package/test_package.c
Normal file
17
assimp/5.x/test_package/test_package.c
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include <assimp/cimport.h>
|
||||
#include <assimp/scene.h>
|
||||
#include <assimp/postprocess.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
const C_STRUCT aiScene *scene = aiImportFile("",
|
||||
aiProcess_CalcTangentSpace |
|
||||
aiProcess_Triangulate |
|
||||
aiProcess_JoinIdenticalVertices |
|
||||
aiProcess_SortByPType);
|
||||
|
||||
aiReleaseImport(scene);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user