Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 789 Bytes

File metadata and controls

42 lines (34 loc) · 789 Bytes

HRotate

Description

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

Parameters

Name Type Description
h HANDLE Handle to object.
center REAL X-Y coordinates of center point of rotation.
rotationAngle REAL Angle of rotation.

Examples

VectorScript

HRotate(objHd,3,5,60d);

Python

def Example():
	vs.HRotate(vs.FSActLayer(),3,5,60)

Example()

Version

Availability: from MiniCAD6.0

Category