Syntax
- shapeL(frontWidth, leftWidth) { selector operator operations | ... }
Parameters
- frontWidth—floatDepth of front wing.
- leftWidth—floatWidth of left wing.
- selector—selector
- shape—The setback polygon.
- remainder—Selects the remainder of the polygon.
- operator—floatThe operator defines how the setback polygons are used to generate successor shapes. This also applies to shapes with more than one faces. Valid operators are:
- : —Each polygon is put into a new shape.
- =—All polygons corresponding to the selector are combined into one new shape.
- operations—floatA sequence of CGA operations to execute.
Description
The shapeL operation selects a number of edges, depending on predefined spatial selectors, and set them back by a user-defined distance.
Related
Examples
A block filled with L-shapes:
attr myFrontDepth = 5
attr myLeftWidth = 11
LotInner -->
Lot
Lot -->
offset(-3, inside)
shapeL(myFrontDepth,myLeftWidth) { shape : Footprint | remainder : NIL }
Footprint -->
extrude(rand(10,20))
color(1,0,0)