Sets the diameters of a rounded rectangle.
PROCEDURE SetRRDiam(
h : HANDLE;
xDiam : REAL;
yDiam : REAL);def vs.SetRRDiam(h, xDiam, yDiam):
return None| Name | Type | Description |
|---|---|---|
| h | HANDLE | |
| xDiam | REAL | |
| yDiam | REAL |
SetRRDiam(h, 1.0, 2.0);import vs
# Sets the diameters of a rounded rectangle.
h = vs.FSActLayer() # handle to the first selected object on the active layer
xDiam = 1.0
yDiam = 2.0
vs.SetRRDiam(h, xDiam, yDiam)Availability: from Vectorworks 2014