<xs:complexType name="boxType">
<xs:annotation>
<xs:documentation>Box shape: a rectangle defined by its center and size on both dimensions; since it is a polygon, it is redundant, but simple rectangles with great circle sides are awkward to define in spherical coordinates</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="reg:shapeType">
<xs:sequence>
<xs:element name="Center" type="crd:double2Type">
<xs:annotation>
<xs:documentation>The coordinates of the box's center</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Size" type="crd:double2Type">
<xs:annotation>
<xs:documentation>The lengths of the box's sides</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType> |