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

symbolInstance

The unique identifier of the <symbolInstance> element containing data attached to this piece of furniture. The symbol instance contains the symbol ID.

x

The horizontal position of the piece of furniture relatively to the center of the project, in meters, as a floating point number.

y

The vertical position of the piece of furniture relatively to the center of the project, in meters, as a floating point number.

width

The width of the piece of furniture in meters, as a floating point number.

depth

The depth of the piece of furniture in meters, as a floating point number.

height

The height of the piece of furniture in meters, as a floating point number.

angle

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>