Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 652 Bytes

File metadata and controls

53 lines (43 loc) · 652 Bytes

Smooth

Description

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

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

  • Objects - Polys