open ASSet IMPort library(ASSIMP) is a portable Open Source library to import various well-known 3D model formats
1
vote
1answer
63 views
OpenGL / Assimp oddity or error?
A friend and I are working on developing a game engine in C++. He doesn't live anywhere near me, so we use Dropbox to sync our files. I opened his project to test his code, and I kept getting errors ...
2
votes
1answer
66 views
smooth shading vs flat shading, what's the difference in the models?
I'm loading the exact same model with Assimp, except one is exported from Blender, shaded smoothly, and the other was exported from Blender, shaded flatly. Here is my results from loading both into my ...
0
votes
0answers
47 views
Default material properties and assimp
I am using assimp to import 3d models and I have a question on the default properties on materials, more specifically on the diffuse, ambient and specular material colors.
In assimp, if the model ...
-2
votes
0answers
57 views
Setting up Assimp Library for C++/OpenGl [closed]
I am trying to load 3d objects in C++/OpenGl using ASSIMP library. I am trying to figure out how to install ASSIMP. I tried to follow the instructions on ...
0
votes
2answers
652 views
Using Assimp to load dae files
I've started looking into using Assimp to load in dae collada files into my game.
I believe I've managed to load the file into aiscene.
I am using c++, OpenGL and SFML.
My problem lies with ...
1
vote
1answer
63 views
How to remove a node from a scene imported with Assimp?
I need to remove one object from the scene graph imported by Assimp and I can't. I've tried to change aiScene.h including a method called DelNode and I can“t. How can I do it - is it possible?
1
vote
1answer
48 views
Cross & dot product using ASSIMP's aiVector3t vector class
I'm using ASSIMP's built in aiVector3t class but I can't find any mention of dot product or cross product in the class documentation.
Are these operations defined? If so what is the syntax?
3
votes
1answer
363 views
Strange mesh import problem with Assimp and OpenGL
Using the assimp library for importing 3D data into an OpenGL application. I get some strange problems regarding indexing of the vertices:
If I use the following code for importing vertex indices:
...
0
votes
1answer
346 views
OpenGL 2.1+ Render with data returned form assimp library
I have just readed this tutorial about load a 3D model file: http://www.lighthouse3d.com/cg-topics/code-samples/importing-3d-models-with-assimp/. Its render routine uses a recursive_render function to ...
1
vote
1answer
385 views
Child transforms problem when loading 3DS models using assimp
I'm trying to load a textured 3d model into my scene using assimp model loader.
The problem is that child meshes are not situated correctly (they don't have the correct transformations).
In brief: ...
11
votes
2answers
4k views
I can't figure out how to animate my loaded model with Assimp
I have loaded in a model to my C++ OpenGL game. It is a COLLADA file type that I have loaded, and I setup an animation under blender for the file. The problem is I don't know how to animate the model. ...
5
votes
1answer
802 views
Problem with Assimp 3D model loader
In my game I have model loading functions for Assimp model loading library. I can load the model and render it, but the model displays incorrectly. The models load in as if they were using a seperate ...