Point
<?xml version="1.0" encoding="UTF-8"?>
<point
snappedX="0.97750"
snappedY="-1.25850"
/>

The <point>
-element represents corner in the current room (the intersection of two walls). Points are positioned on an imaginary line located at the center of the wall. To compute the length of the wall surface you need to offset these points from the center of the wall to the wall’s surface.
The list of points are ordered clockwise.
Attribute |
Description |
---|---|
|
The corrected horizontal position of the corner relatively to the center of the room, in meters, as a floating point number. This value should be used when drawing an assembled project. |
|
The corrected vertical position of the corner relatively to the center of the room, in meters, as a floating point number. This value should be used when drawing an assembled project. |
XML SchemaCopied!
<xs:element name="point">
<xs:complexType>
<xs:sequence>
<xs:element name="values" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="snappedX" type="xs:decimal" use="required"/>
<xs:attribute name="snappedY" type="xs:decimal" use="required"/>
</xs:complexType>
</xs:element>