Furniture
<?xml version="1.0" encoding="UTF-8"?>
<furniture
symbolInstance="F-0-0"
x="-6.989"
y="-4.551"
width="1.600"
depth="2.037"
height="0.537"
angle="1.570"
/>
The <furniture>
-element represents a piece of furniture on the current floor.
Attribute |
Description |
---|---|
|
The unique identifier of the |
|
The horizontal position of the piece of furniture relatively to the center of the project, in meters, as a floating point number. |
|
The vertical position of the piece of furniture relatively to the center of the project, in meters, as a floating point number. |
|
The width of the piece of furniture in meters, as a floating point number. |
|
The depth of the piece of furniture in meters, as a floating point number. |
|
The height of the piece of furniture in meters, as a floating point number. |
|
The angle of the piece of furniture in radians, as a floating point number. |
XML SchemaCopied!
<xs:element name="furniture">
<xs:complexType>
<xs:attribute name="symbolInstance" type="xs:string" use="required"/>
<xs:attribute name="x" type="xs:decimal" use="required"/>
<xs:attribute name="y" type="xs:decimal" use="required"/>
<xs:attribute name="width" type="xs:decimal" use="required"/>
<xs:attribute name="depth" type="xs:decimal" use="required"/>
<xs:attribute name="height" type="xs:decimal" use="required"/>
<xs:attribute name="angle" type="xs:decimal" use="required"/>
</xs:complexType>
</xs:element>