<element
name="surface"> <complexType> <attribute name="id" type="integer"/> <attribute name="type" type="surfaceType"/> <element name="srl"> <complexType> <element name="origin" type="PointType" /> <element name="directMatrix" type="matrixType"/> <element name="reverseMatrix" type="matrixType"/> </complexType> </element> <element name="points"> <complexType> <attribute name="value" type="integer" /> <element name="point" type="PointType"/> </complexType> </element> </complexType> </element> |
<surface id="1"
type="1" > <srl> <origin> <point x="0.0" y="0.0" z="3.0"/> </origin> <direct> <matrix> <arrow> <point x="0.0" y="0.0" z="3.0"/> </arrow> <arrow> <point x="0.0" y="0.0" z="3.0"/> </arrow> <arrow> <point x="0.0" y="0.0" z="3.0"/> </arrow> </matrix> </direct> <reverse> <matrix> matrix goes here </matrix> </reverse> </srl> <points value="4"> <point x="0.0" y="0.0" z="3.0"/> <point x="0.0" y="8.75" z="4.5" /> <point x="49.5" y="8.75" z="4.5"/> <point x="49.5" y="0.0" z="3.0" /> </points> </surface> |