HatchitResource
ht_assimp.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 
19 #include <assimp/Importer.hpp>
20 #include <assimp/postprocess.h>
21 #include <assimp/scene.h>
22 
23 #ifdef min
24 #undef min
25 #endif
26 
27 #ifdef max
28 #undef max
29 #endif
30 
31 namespace Hatchit {
32 
33  namespace Resource {
34 
35  HT_API void ASSIMP_MeshBounds(const aiVector3D* in, size_t size, aiVector3D& min, aiVector3D& max);
36 
37  HT_API void ASSIMP_FindMeshCenter(aiMesh* mesh, aiVector3D& out, aiVector3D& min, aiVector3D& max);
38 
39 
40  }
41 
42 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_assimp.h:31