<rot>
(Rotation)
This element defines a rotation in 3D space. A rotation in DrawingML is defined through the use of a latitude coordinate, a longitude coordinate, and a revolution about the axis as the latitude and longitude coordinates.
<a:lightRig rig="twoPt" dir="t"> <a:rot lat="0" lon="0" rev="6000000"/> </a:lightRig>
In this example, we have only a revolution applied to the light rig rich rotates it around it's center axis. ]
Attributes |
Description |
---|---|
|
Defines the latitude value of the rotation. <a:rot lat="0" lon="0" rev="6000000"/> In this example, we set the The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44). |
|
Defines the longitude value of the rotation. <a:rot lat="0" lon="0" rev="6000000"/> In this example, we set the The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44). |
|
This attributes defines the revolution around the central axis in the rotation. <a:rot lat="0" lon="0" rev="6000000"/> In this example, we set the The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_SphereCoords">
<attribute name="lat" type="ST_PositiveFixedAngle" use="required"/>
<attribute name="lon" type="ST_PositiveFixedAngle" use="required"/>
<attribute name="rev" type="ST_PositiveFixedAngle" use="required"/>
</complexType>