Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 634 Bytes

File metadata and controls

38 lines (30 loc) · 634 Bytes

RotatePoint

Description

Procedure RotatePoint rotates selected VectorWorks objects about the specified coordinate point.

PROCEDURE RotatePoint(
				pX,pY         : REAL;
				rotationAngle : REAL);
def vs.RotatePoint(p, rotationAngle):
    return None

Parameters

Name Type Description
p REAL Point of rotation.
rotationAngle REAL Rotation angle.

Examples

VectorScript

SetSelect(LNewObj);
RotatePoint(0,3,45d);

Python

Version

Availability: from MiniCAD6.0

Category