collada.triangleset.Triangle¶
- class collada.triangleset.Triangle(indices, vertices, normal_indices, normals, texcoord_indices, texcoords, material)¶
Single triangle representation.
- __init__(indices, vertices, normal_indices, normals, texcoord_indices, texcoords, material)¶
A triangle should not be created manually.
Methods
__init__(indices, vertices, normal_indices, ...)A triangle should not be created manually.
Attributes
verticesA (3, 3) float array for points in the triangle
normalsA (3, 3) float array with the normals for points in the triangle.
texcoordsA tuple with (3, 2) float arrays with the texture coordinates for the points in the triangle
materialIf coming from an unbound
collada.triangleset.TriangleSet, contains a string with the material symbol.indicesA (3,) int array with vertex indexes of the 3 vertices in the vertex array
normal_indicesA (3,) int array with normal indexes of the 3 vertices in the normal array
texcoord_indicesA (3,2) int array with texture coordinate indexes of the 3 vertices in the texcoord array.