Skip to main content

Wall Triangular

Description

Wall Triangular

Triangular-shaped wall-mounted luminaire.

  • Width, Length, and Height will set the dimensions of the bounding box.
  • LuminousWidth, LuminousLength and LuminousHeight set the dimensions of the main luminous output.
  • It can be defined through Type as Direct, Indirect, or DirectIndirect.
  • Both sides have the same length. Lumious surfaces have the same size.
ParameterTypeExplanation
Widthintvalue in mm
Lengthintvalue in mm
Heightintvalue in mm
LuminousWidthintvalue in mm
LuminousLengthintvalue in mm
LuminousHeightintvalue in mm
TypeintDirect, Indirect, DirectIndirect

XSD

<xs:element name="WallTriangular">
<xs:complexType>
<xs:sequence>
<xs:element name="Width" type="xs:int"/>
<xs:element name="Length" type="xs:int"/>
<xs:element name="Height" type="xs:int"/>
<xs:element name="LuminousWidth" type="xs:int"/>
<xs:element name="LuminousLength" type="xs:int"/>
<xs:element name="LuminousHeight" type="xs:int"/>
<xs:element name="Type" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Direct"/>
<xs:enumeration value="Indirect"/>
<xs:enumeration value="DirectIndirect"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>

XML

<P3D>
<WallTriangular>
<Width>300</Width>
<Length>200</Length>
<Height>200</Height>
<LuminousWidth>50</LuminousWidth>
<LuminousLength>50</LuminousLength>
<LuminousHeight>20</LuminousHeight>
</WallTriangular>
</P3D>