<xs:complexType name="trianglesType">
<xs:annotation>
<xs:documentation>A collection of triangles, defined by three point indexes. Every triangle in the string must be separated by an ";". Every point index must be separated by space.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="count" type="xs:integer">
<xs:annotation>
<xs:documentation>The triangle count</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType> |