COLLADA Reader
COLLADA | |
File Extension | DAE |
Supported Versions | Any |
Platforms | ![]() ![]() ![]() ![]() ![]() |
Tessellation | ![]() |
B-rep | ![]() |
PMI | ![]() |
The file extensions of COLLADA files that you can expect to be loaded by HOOPS Exchange include:
- .DAE
How to Import From COLLADA
To load a COLLADA file, use A3DAsmModelFileLoadFromFile()
.
The A3DParamsLoadData
structure is used to customize the loading behavior:
A3DAsmModelFile* pModelFile = 0;
A3DRWParamsLoadData sReadParam;
A3D_INITIALIZE_DATA(A3DRWParamsLoadData, sReadParam);
sReadParam.m_sGeneral.m_bReadSolids = true;
// ... set other A3DRWParamsLoadData fields as necessary
A3DAsmModelFileLoadFromFile("path/to/file.dae", &sReadParam, &pModelFile);
See Simple Load and Export for more about loading model files.
Tessellation
The triangle information is parsed and provided via HOOPS Exchange.
B-rep
This concept is not supported by COLLADA.
PMI
This concept is not supported by COLLADA.
Assembly
This concept is not supported by COLLADA.
Textures
Textures are fully supported when parsing COLLADA.
Views
This concept is not supported by COLLADA.