2.6.4.4 ST_LightRigDirection

Target namespace: http://schemas.microsoft.com/office/word/2010/wordml

Referenced by: CT_LightRig

A simple type that specifies the direction from which the light rig is positioned relative to the scene. The light rig itself can be made up of multiple lights in any orientation around the shape. This simple type specifies the orientation of the light rig as a whole, and not the individual lights within the rig. This means, for example, that if the direction of the light rig is specified as left, this does not guarantee the light is coming from the left side of the shape; rather, the orientation of the rig as a whole is rotated to the left.

Possible values for this type are listed in the following table. See [ISO/IEC29500-1:2016] section 20.1.10.29 for further details regarding the meaning of the listed values.

Value

Meaning

tl

Top Left: Light rig is positioned at the top-left of the scene.

t

Top: Light rig is positioned at the top of the scene.

tr

Top Right: Light rig is positioned at the top-right of the scene.

l

Left: Light rig is positioned to the left of the scene.

r

Right: Light rig is positioned to the right of the scene.

bl

Bottom Left: Light rig is positioned at the bottom left of the scene.

b

Bottom: Light rig is positioned at the bottom of the scene.

br

Bottom Right: Light rig is positioned at the bottom right of the scene.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xsd:simpleType name="ST_LightRigDirection">
   <xsd:restriction base="xsd:token">
     <xsd:enumeration value="tl"/>
     <xsd:enumeration value="t"/>
     <xsd:enumeration value="tr"/>
     <xsd:enumeration value="l"/>
     <xsd:enumeration value="r"/>
     <xsd:enumeration value="bl"/>
     <xsd:enumeration value="b"/>
     <xsd:enumeration value="br"/>
   </xsd:restriction>
 </xsd:simpleType>

See section 5.1 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).