Header file for model loading functions. More...
#include <io/model_loaders/obj_loader.h>
#include <io/model_loaders/mtl_loader.h>
#include <io/model_loaders/fbx_loader.h>
Go to the source code of this file.
Functions | |
int | load_model (const char *path, ModelData **modelPtr) |
Loads a 3D model from the specified file path. | |
Header file for model loading functions.
This file contains the declaration of functions used for loading 3D models.
int load_model | ( | const char * | path, |
ModelData ** | modelPtr | ||
) |
Loads a 3D model from the specified file path.
This function reads a 3D model from the given file path and stores the model data in the provided ModelData pointer.
path | The file path to the 3D model to be loaded. |
modelPtr | A pointer to a pointer of ModelData where the loaded model data will be stored. |