You are here: Start » AVL.NET » Function Reference » Path » Path Basics » AVL.CreateCirclePath

AVL.CreateCirclePath

Creates a closed path containing cocircular, equidistant points.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateCirclePath
(
	AvlNet.Circle2D inCircle,
	int inPointCount,
	AvlNet.Path outPath
)

Parameters

Name Type Range Default Description
inCircleAvlNet.Circle2D
inPointCountint<2, INF>8Number of points in the resulting path. Default value: 8.
outPathAvlNet.PathOutput path.

Description

The operation produces a closed path that consist of inPointCount equidistant points selected along the inCircle circumference.

Examples

CreateCirclePath run using a sample circle with inPointCount = 12.

See also