Procedure Smooth sets the smoothing type of newly created polyline or polygon objects.
{| class="wikitable_c" |+ Table - Smoothing Types
| ! Smooth Type !! Constant |
|---|
| None |
| 0 |
| - |
| Bezier |
| 1 |
| - |
| Cubic |
| 2 |
| - |
| Arc |
| 3 |
| } |
PROCEDURE Smooth(smoothType : INTEGER);def vs.Smooth(smoothType):
return None| Name | Type | Description |
|---|---|---|
| smoothType | INTEGER | Smoothing style. |
==== VectorScript ====
Smooth(2);
Poly(0, 0, -0.5, 1, 0.5, 2);==== Python ====
Availability: from All Versions
- Objects - Polys