Back to Aurora Vision Library Lite website

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

CreateArcPath


Header: AVL.h
Namespace: avl

Creates an open path containing cocircular, equidistant points.

Syntax

void avl::CreateArcPath
(
	const avl::Arc2D& inArc,
	int inPointCount,
	avl::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.