pycollada
pycollada copied to clipboard
A python COLLADA library. Can be used to create, edit and load COLLADA documents.
Hi guys, I have two COLLADA files that I created using blender, they are the same but have different sizes: How can I tell the size with pycollada? Is it...
I'm having a problem when using the generatenormals() method Here's my piece of code: ``` triset = geom.createTriangleSet(indices, input_list, "materialref") geom.primitives.append(triset) mesh.geometries.append(geom) triset.generateNormals() ``` And the TypeError on the last...
I am trying meshtool/pycollada for converting .dae files from the the Boston Planning & Development Agency http://www.bostonplans.org/3d-data-maps/3d-smart-model/3d-data-download but I get the following error from meshtool (which I assume is an...
Hi. According to both versions 1.4.1 and 1.5 of the Collada spec, the “id” attribute on a <node> is not supposed to be mandatory. I am working around this in...
I think that following line in BoundTriangleSet is incorrect self._vertex = None if ts.vertex is None else numpy.asarray(ts._vertex * M[:3,:3]) + **matrix[:3,3]** The second part should be matrix[3,:3] for the...
i would really like support for adding kinematics and physics elements to pycollada. For starters, just getting the following elements working would be awesome: ``` library_physics_scenes physics_scene physics_model instance_rigid_body articulated_system...
i see this pattern a lot in the code: ``` python url = node.get('url') if not url.startswith('#'): raise DaeMalformedError('Invalid url instance %s' % url) ``` which suggests that no one...
We extensively use the tags to annotate our collada scenes. What is a good strategy for having all elements be able to extract the extra tags, have a user edit...