Maps the given x,y vector through this transform, filling in the mapped x,y vector components.
Namespace: Cognex.VisionProAssembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 91.0.0.0
public void MapVector(
double x,
double y,
out double mappedX,
out double mappedY
)
public void MapVector(
double x,
double y,
out double mappedX,
out double mappedY
)
Public Sub MapVector (
x As Double,
y As Double,
<OutAttribute> ByRef mappedX As Double,
<OutAttribute> ByRef mappedY As Double
)
Public Sub MapVector (
x As Double,
y As Double,
<OutAttribute> ByRef mappedX As Double,
<OutAttribute> ByRef mappedY As Double
)
public:
void MapVector(
double x,
double y,
[OutAttribute] double% mappedX,
[OutAttribute] double% mappedY
)
public:
void MapVector(
double x,
double y,
[OutAttribute] double% mappedX,
[OutAttribute] 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.
Maps the given from space point through this transform, filling in the mapped to space (x, y) coordinates.