Another set of very simple timesaving macros
that I've used for a long time and I assigned to hotkeys:
-
Shift + R - Rotate90
-
Alt + R - Rotate45
-
Shift + Alt - Rotate22
Andrew Sanderson
 |
' This just rotates the selected object by 90 deg
' written by Andrew Sanderson and last updated 12 Nov 03
>2DSelectMode
{
}
>SetStartPoint
{
}
>Rotate
{
<PointXYZ 0.0000,0.0000,0.0000
<Axis 2
<Angle 90.0000
} |
 |
' This just rotates the selected object by 45 deg
' written by Andrew Sanderson and last updated 12 Nov 03
>2DSelectMode
{
}
>SetStartPoint
{
}
>Rotate
{
<PointXYZ 0.0000,0.0000,0.0000
<Axis 2
<Angle 45.0000
} |
 |
' This just rotates the selected object by 22.5 deg
' written by Andrew Sanderson and last updated 12 Nov 03
>2DSelectMode
{
}
>SetStartPoint
{
}
>Rotate
{
<PointXYZ 0.0000,0.0000,0.0000
<Axis 2
<Angle 22.5000
}
 |
|