<xs:complexType name="Triangulation2dType">
<xs:annotation>
<xs:documentation>The Triangulation2dType defines a 2D triangle mesh.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice>
<xs:annotation>
<xs:documentation>This compositor provides a choice of the representation method for an array of 2D points.</xs:documentation>
</xs:annotation>
<xs:element name="Vertices" type="ArrayPoint2dType">
<xs:annotation>
<xs:documentation>The Vertices element alternative is an array of 2D vertices of the mesh.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VerticesBinary" type="ArrayBinaryType">
<xs:annotation>
<xs:documentation>The VerticesBinary element alternative is a binary array of 2D vertices of the mesh.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:choice>
<xs:annotation>
<xs:documentation>This compositor provides a choice of the representation method for indices of the triangle vertices.</xs:documentation>
</xs:annotation>
<xs:element name="Triangles" type="ArrayI3Type">
<xs:annotation>
<xs:documentation>The Triangles element alternative is an array of indices of the triangle vertices. The number of array elements corresponds to the number of triangles in the mesh. Each element of this array is a triplet of integer numbers: index of the first vertex, index of the second vertex and index of the third vertex. All three vertex indexes of a triangle must be different and must lie in the range [0, ..., number of vertices - 1].</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TrianglesBinary" type="ArrayBinaryType">
<xs:annotation>
<xs:documentation>The TrianglesBinary element alternative is a binary array of indices of the triangle vertices. The number of array elements corresponds to the number of triangles in the mesh. Each element of this array is a triplet of 32-bit integer numbers: index of the first vertex, index of the second vertex and index of the third vertex. All three vertex indexes of a triangle must be different and must lie in the range [0, ..., number of vertices - 1].</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TrianglesColor" type="ArrayUnsignedByteType">
<xs:annotation>
<xs:documentation>The TrianglesColor element is an array of unsigned byte values which defines the colors of the triangles. Each element of this array is a triplet of unsigned byte numbers - the RGB color: the red-component, the green-component and the blue-component. The number of array elements corresponds to the number of triangles.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TrianglesColorBinary" type="ArrayBinaryType">
<xs:annotation>
<xs:documentation>The TrianglesColorBinary element is a binary array of unsigned byte values which defines the colors of the triangles. Each element of this array is a triplet of unsigned byte numbers - the RGB color: the red-component, the green-component and the blue-component. The number of array elements corresponds to the number of triangles.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:complexType> |