[Table of Contents] [docx version]

Error! No text of specified style in document.

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.

[Example: Consider the following example of a rotation defined by the rot elements being used in a lightRig in DrawingML:

<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. end example]

Parent Elements

camera5.1.7.5); lightRig5.1.7.9)

 

Attributes

Description

lat (Latitude)

Defines the latitude value of the rotation.

 

[Example: Consider the following example of a rot in DrawingML:

 

<a:rot lat="0" lon="0" rev="6000000"/>

 

In this example, we set the lat to be equal to 0. end example]

 

The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44).

lon (Longitude)

Defines the longitude value of the rotation.

 

[Example: Consider the following example of a rot in DrawingML:

 

<a:rot lat="0" lon="0" rev="6000000"/>

 

In this example, we set the lon to be equal to 0. end example]

 

The possible values for this attribute are defined by the ST_PositiveFixedAngle simple type (§5.1.12.44).

rev (Revolution)

This attributes defines the revolution around the central axis in the rotation.

 

[Example: Consider the following example of a rot in DrawingML:

 

<a:rot lat="0" lon="0" rev="6000000"/>

 

In this example, we set the rev to be equal to 6000000. end example]

 

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>