Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 1.47 KB

File metadata and controls

54 lines (42 loc) · 1.47 KB

AngularDim

Description

Procedure AngularDim creates an angular dimension in the document.

Bit code values for dimension flags can be found in the VectorScript Appendix.

*Angular Dimension

Angular Dimension

PROCEDURE AngularDim(
				startPtX,startPtY  : REAL;
				endPtX,endPtY      : REAL;
				vert1X,vert1Y      : REAL;
				textOffsetDistance : REAL;
				arrow              : INTEGER;
				textFlag           : INTEGER;
				posAngle           : REAL);
def vs.AngularDim(startPt, endPt, vert1, textOffsetDistance, arrow, textFlag, posAngle):
    return None

Parameters

Name Type Description
startPt REAL X-Y coordinates of dimension start point.
endPt REAL X-Y coordinates of dimension end point
vert1 REAL X-Y coordinates of dimension arc center.
textOffsetDistance REAL Offset from dimension arc center (radius of the dimension arc).
arrow INTEGER Dimension arrowhead style flag.
textFlag INTEGER Dimension text style flag.
posAngle REAL Position angle of dimension text(from start). Auto position text overrides this value.

Examples

VectorScript

AngularDim(1 1/2",3/8",-1/4",-1/2",7/8",-1/2",1.7001838",771,770,#35d 32'16");

Python

Version

Availability: from All Versions

Category