Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Spatial Transforms » PointAlongArc

PointAlongArc


Transforms a point to a coordinate system in which the 'axis' arc is vertical or horizontal.

Syntax

C++
C#
 
void avl::PointAlongArc
(
	const avl::Point2D& inPoint,
	const avl::Arc2D& inAxis,
	avl::Axis::Type inAxisType,
	float inAxisCoordinate,
	bool inInverse,
	avl::Point2D& outPoint
)

Parameters

Name Type Default Description
inPoint const Point2D& Input point
inAxis const Arc2D& Input axis arc
inAxisType Axis::Type Y Type of axis the input axis arc is parallel to
inAxisCoordinate float 0.0f Coordinate of the axis arc
inInverse bool True Switches to the inverse operation
outPoint Point2D& Transformed point

See Also