an array of left, bottom, width, height values
[number, number, number, number]
a recorder state definition TypeF1DefRect
a string representation of all options except the first
Example
// All rectangles are the same when parsed by `getRect` and have a lower leftcornerof`(-2, -1)`, awidthof`4`, andaheightof`2` constr1 = Fig.getRect([-2, -1, 4, 2]); constr2 = newFig.Rect(-2, -1, 4, 2); constr3 = Fig.getRect('[-2, -1, 4, 2]');
A Rect can be defined with either
[number, number, number, number]