Enum collada::Shape
[-] [+]
[src]
pub enum Shape {
Point(VTNIndex),
Line(VTNIndex, VTNIndex),
Triangle(VTNIndex, VTNIndex, VTNIndex),
}The various shapes supported by this library.
Convex polygons more complicated than a triangle are automatically converted into triangles.
Variants
Point | A point specified by its position. |
Line | A line specified by its endpoints. |
Triangle | A triangle specified by its three vertices. |