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

AVL.CreateArcPath

Creates an open path containing cocircular, equidistant points.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateArcPath
(
	AvlNet.Arc2D inArc,
	int inPointCount,
	AvlNet.Path outPath
)

Parameters

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

Description

The operation produces an open path that consists of inPointCount equidistant points selected along the inArc arc.

Examples

CreateArcPath run using a sample arc with inPointCount = 10.

See also