Transform2DComposed MapPoint Method Cognex VisionPro 9.25 SR1

Maps the given x,y point through this transform, filling in the mapped x,y coordinates.

Namespace: Cognex.Vision
Assembly: Cognex.Vision.Core.Net (in Cognex.Vision.Core.Net.dll) Version: 9.25.1.0
Syntax

public void MapPoint(
	double x,
	double y,
	out double mappedX,
	out double mappedY
)

Parameters

x
Type: System Double
The x-coordinate of the original point in From space.
y
Type: System Double
The y-coordinate of the original point in From space.
mappedX
Type: System Double 
The resulting mapped x-coordinate in To space.
mappedY
Type: System Double 
The resulting mapped y-coordinate in To space.

Implements

ITransform2D MapPoint(Double, Double, Double , Double )
Remarks

Maps the given from space point through this transform, filling in the mapped to space (x, y) coordinates. This method performs the same operation as the MapPoint method of Transform2DLinear. This method is provided on both interfaces as a convenience to users.

See Also