Procedure HRotate rotates the referenced object about a coordinate point location. rotationAngle is in degrees.
PROCEDURE HRotate(
h : HANDLE;
centerX,centerY : REAL;
rotationAngle : REAL);def vs.HRotate(h, center, rotationAngle):
return None| Name | Type | Description |
|---|---|---|
| h | HANDLE | Handle to object. |
| center | REAL | X-Y coordinates of center point of rotation. |
| rotationAngle | REAL | Angle of rotation. |
HRotate(objHd,3,5,60d);def Example():
vs.HRotate(vs.FSActLayer(),3,5,60)
Example()Availability: from MiniCAD6.0