Utilities for OpenCCD
Ply to CCD_Object Loader
* It converts a model of a ply file to a CCD_Object instance.
* It is already included in the openCCD. ( ObjectLoader.h )
/**
* Read object(s) from ply files
* @param path The path of the folder that contains ply files
* @param num_frame The number of frames
* @param scale A scale factor that will be applied to the object(s)
* @return A pointer of created CCD_Object
*/
CCD_Object* ply2Object( char *path, UINT num_frame, float scale, UINT objType ) ;
|