Back to FabImage Library website

You are here: Start » Function Reference » Path » Path Basics » CreateArcPath

CreateArcPath


Header: FIL.h
Namespace: fil
Module: FoundationLite

Creates an open path containing cocircular, equidistant points.

Syntax

C++
C#
 
void fil::CreateArcPath
(
	const fil::Arc2D& inArc,
	int inPointCount,
	fil::Path& outPath
)

Parameters

Name Type Range Default Description
Input value
inArc const Arc2D&
Input value
inPointCount int 2 - 8 Number of points in the resulting path
Output value
outPath Path& Output 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

  • CreateSegmentPath – Creates an open path containing collinear, equidistant points.
  • CreateCirclePath – Creates a closed path containing cocircular, equidistant points.