Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 919 Bytes

File metadata and controls

47 lines (35 loc) · 919 Bytes

SetScale

Description

Procedure SetScale sets the drawing scale of the active layer of the document.

Calculating the Scale To calculate the scale parameter from an architecural scale, the following formula may be used :

denominator/numerator * true size(in inches) = ActualSize

For example, to calculate a scale of 3/8"=1'-0", the scale parameter would be 8/3 *12 = 32.

PROCEDURE SetScale(actualSize : REAL);
def vs.SetScale(actualSize):
    return None

Parameters

Name Type Description
actualSize REAL Drawing scale factor.

Examples

BEGIN
SetZVals(zVal , deltaZVal) ;
SetScale(LScale);
END;
import vs

# Procedure SetScale sets the drawing scale of the active layer of the document.
actualSize = 1.0

vs.SetScale(actualSize)

Version

Availability: from All Versions

Category