Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 745 Bytes

File metadata and controls

44 lines (34 loc) · 745 Bytes

Smooth

Description

Procedure Smooth sets the smoothing type of newly created polyline or polygon objects.

Table - Smoothing Types

Smooth Type Constant
None 0
Bezier 1
Cubic 2
Arc 3
PROCEDURE Smooth(smoothType : INTEGER);
def vs.Smooth(smoothType):
    return None

Parameters

Name Type Description
smoothType INTEGER Smoothing style.

Examples

VectorScript

Smooth(2);
Poly(0, 0, -0.5, 1, 0.5, 2);

Python

Version

Availability: from All Versions

Category