1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0"?>
<DDDefinition>
<RotationSection label="testRotations.xml">
<RotationByAxis name="z30" axis="z" angle="30*deg"/>
<RotationSequence name="z30x20">
<RotationByAxis axis="z" angle="30*deg"/>
<RotationByAxis axis="x" angle="20*deg"/>
</RotationSequence>
<RotationSequence name="x90y45">
<RotationByAxis axis="x" angle="90*deg"/>
<RotationByAxis axis="y" angle="45*deg"/>
</RotationSequence>
<RotationSequence name="x90y90">
<RotationByAxis axis="x" angle="90*deg"/>
<RotationByAxis axis="y" angle="90*deg"/>
</RotationSequence>
<RotationSequence name="x90y135">
<RotationByAxis axis="x" angle="90*deg"/>
<RotationByAxis axis="y" angle="135*deg"/>
</RotationSequence>
<RotationSequence name="x90y180">
<RotationByAxis axis="x" angle="90*deg"/>
<RotationByAxis axis="y" angle="180*deg"/>
</RotationSequence>
<RotationByAxis name="x90" axis="x" angle="90*deg"/>
<Rotation name="cmsimIdentity" phiX="0" thetaX="90*deg" phiY="90*deg" thetaY="90*deg" phiZ="0" thetaZ="0"/>
<RotationByAxis name="newrotIdentity" axis="z" angle="0*deg"/>
<ReflectionRotation name="180R" thetaX="90*deg" phiX="0*deg" thetaY="90*deg" phiY="90*deg" thetaZ="180*deg" phiZ="0*deg" />
<ReflectionRotation name="ReflectionY" phiY="270.*deg" thetaY="90.*deg" phiX=" 0.*deg" thetaX="90.*deg" phiZ="0.*deg" thetaZ="0.*deg"/>
</RotationSection>
</DDDefinition>
|