Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 950 Bytes

File metadata and controls

44 lines (37 loc) · 950 Bytes

BreakWall

Description

Procedure BreakWall creates a break in a wall object on the left or the right at a specified offset location.

PROCEDURE BreakWall(
				offsetDistance     : REAL;
				breakWidthDistance : REAL;
				right              : BOOLEAN);
def vs.BreakWall(offsetDistance, breakWidthDistance, right):
    return None

Parameters

Name Type Description
offsetDistance REAL Offset distance from wall start.
breakWidthDistance REAL Width of wall break.
right BOOLEAN Left-right edge status of break.

Examples

VectorScript

MoveTo(2,3);
WallTo(7,3);
BreakWall(3",1",True);
{creates a right hand 1" wall break 3" from the start of the wall}

Python

vs.MoveTo(2,3)
vs.WallTo(7,3)
vs.BreakWall(3,1,True)

Version

Availability: from MiniCAD4.0

Category