You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Constructions » AVL.CreateCoordinateSystemFromPoint

AVL.CreateCoordinateSystemFromPoint

Creates a coordinate system with the specified origin.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CreateCoordinateSystemFromPoint
(
	AvlNet.Point2D inPoint,
	float inAngle,
	float inScale,
	float inScaleDivisor,
	out AvlNet.CoordinateSystem2D outCoordinateSystem
)

Parameters

Name Type Range Default Description
inPointAvlNet.Point2DOrigin of the created coordinate system.
inAnglefloat
inScalefloat<0.001f, INF>1.0fDefault value: 1.0f.
inScaleDivisorfloat<0.001f, INF>1.0fDefault value: 1.0f.
outCoordinateSystemAvlNet.CoordinateSystem2D

Examples

A local coordinate system created from a point. Here, the point is located with a 1D Edge Detection filter.

Remarks

Read more about Local Coordinate Systems in Machine Vision Guide: Local Coordinate Systems.

See also