<xs:complexType name="RectangularBox">
<xs:annotation>
<xs:documentation>A Rectangular Box for locating cells in 3D.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="corner" type="Point">
<xs:annotation>
<xs:documentation>Location of vertex with lowest x, y, z coords.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="size">
<xs:annotation>
<xs:documentation>Size of box. Note if width, height or depth is zero, implies a lower dimension box, e.g. 2D plane.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="width" type="xs:double"/>
<xs:attribute name="height" type="xs:double"/>
<xs:attribute name="depth" type="xs:double"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="optional"/>
</xs:complexType> |