<xsd:complexType name="CT_Path2D">
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="close" type="CT_Path2DClose" minOccurs="1" maxOccurs="1"/>
<xsd:element name="moveTo" type="CT_Path2DMoveTo" minOccurs="1" maxOccurs="1"/>
<xsd:element name="lnTo" type="CT_Path2DLineTo" minOccurs="1" maxOccurs="1"/>
<xsd:element name="arcTo" type="CT_Path2DArcTo" minOccurs="1" maxOccurs="1"/>
<xsd:element name="quadBezTo" type="CT_Path2DQuadBezierTo" minOccurs="1" maxOccurs="1"/>
<xsd:element name="cubicBezTo" type="CT_Path2DCubicBezierTo" minOccurs="1" maxOccurs="1"/>
</xsd:choice>
<xsd:attribute name="w" type="ST_PositiveCoordinate" use="optional" default="0"/>
<xsd:attribute name="h" type="ST_PositiveCoordinate" use="optional" default="0"/>
<xsd:attribute name="fill" type="ST_PathFillMode" use="optional" default="norm"/>
<xsd:attribute name="stroke" type="xsd:boolean" use="optional" default="true"/>
<xsd:attribute name="extrusionOk" type="xsd:boolean" use="optional" default="true"/>
</xsd:complexType> |