Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sample COLLADA files for development of an importer? [closed]

I'm preparing to write a COLLADA importer in Java. There aren't any pre-written importers, and even if there were I would probably be picky, so I believe this is best. I am going with COLLADA 1.4 because I do not need the 1.5 features, and many programs don't yet support it. I found the spec for it and plan on following it, but it is much easier to follow by example and reference the spec for additional information.

So with all that... Can some of you who are experienced in COLLADA point me to some simple models that I can use to learn and test my importer as I write it? I will export a few with just geometry, but I need some with textures or materials, with skeletal and keyframe animation, etc. Any suggestions?

Alternatively, I know that Blender can export COLLADA 1.4 and it can import most formats. If you have a really good suggestion for a site that has simple 3D models in another format that I will just import and export as COLLADA, that would be fine too!

Thanks!

like image 347
Ricket Avatar asked Jun 22 '09 18:06

Ricket


People also ask

What is a .ZAE COLLADA file?

a Collada archive (. zae) file is an archive that contains the original Collada file (. dae), all additional artwork and material files, and additional information.

How do I open a DAE file?

How to open a DAE file. You can open DAE files and view their contents in Adobe Photoshop (Windows, Mac) and Apple Preview (Mac). If you want to edit a DAE file, you should open it in an Autodesk application that supports DAE files, such as Autodesk Maya (cross-platform), or Blender (cross-platform).


2 Answers

I know two decent places at least:

  • Thingiverse tag: 3D
  • Google 3D Warehouse

The google site has lots of collada files, thingiverse has more in the way of stl (sterio lithography) files.

like image 182
stevedbrown Avatar answered Dec 06 '22 20:12

stevedbrown


Download Assimp the "Open Asset Import Library" from http://assimp.sourceforge.net/main_downloads.html. It has a whole bunch of Collada files (in test/models/Collada) that it uses for its test suites.

like image 43
joshbodily Avatar answered Dec 06 '22 22:12

joshbodily