Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 778 Bytes

File metadata and controls

47 lines (38 loc) · 778 Bytes

SetZVals

Description

Procedure SetZVals sets the Z (layer base elevation) and delta Z (layer thickness) for the active layer.

PROCEDURE SetZVals(
				zDistance      : REAL;
				deltaZDistance : REAL);
def vs.SetZVals(zDistance, deltaZDistance):
    return None

Parameters

Name Type Description
zDistance REAL Layer base elevation (above document ground plane).
deltaZDistance REAL Layer thickness.

Examples

==== VectorScript ====

PROCEDURE Example;
VAR
baseElevation, thickness :REAL;
BEGIN
Layer('Test Layer');
baseElevation := 1;
thickness := 3;
SetZVals(baseElevation, thickness);
END;
RUN(Example);

==== Python ====

Version

Availability: from MiniCAD4.0

Category

  • Layers