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

FIL.CreateArcPath

Creates an open path containing cocircular, equidistant points.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inArcFilNet.Arc2D
inPointCountint<2, INF>8Number of points in the resulting path. Default value: 8.
outPathFilNet.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