Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 896 Bytes

File metadata and controls

40 lines (32 loc) · 896 Bytes

BeginFloor

Description

Procedure BeginFloor creates a new floor object in a VectorWorks document. BeginFloor uses 2D object creation procedure calls to define the "template" for the object.

After specifying object procedure calls to define the floor object, you should call EndGroup to complete the column definition and create the actual object.

PROCEDURE BeginFloor(thicknessDistance : REAL);
def vs.BeginFloor(thicknessDistance):
    return None

Parameters

Name Type Description
thicknessDistance REAL Floor thickness.

Examples

VectorScript

BeginFloor(6");
Rect(1,1,5,5);
EndGroup;

Python

vs.BeginFloor(6)
vs.Rect(1,1,5,5)
vs.EndGroup()

Version

Availability: from MiniCAD4.0

Category