CogFixtureNPointToNPoint GetRawFixturedPoint Method Cognex VisionPro 9.7
Gets the X and Y coordinates of the raw fixtured point with the given index. Valid indices range from 0 to NumPoints-1 inclusive.

Namespace: Cognex.VisionPro.CalibFix
Assembly: Cognex.VisionPro.CalibFix (in Cognex.VisionPro.CalibFix.dll) Version: 73.0.0.0
Syntax

public void GetRawFixturedPoint(
	int index,
	out double x,
	out double y
)

Parameters

index
Type: System Int32

The index of the point.

x
Type: System Double 

The x-axis coordinate of the point.

y
Type: System Double 

The y-axis coordinate of the point.

Exceptions

ExceptionCondition
NullReferenceException

x or y is NULL.

ArgumentException

index is less than 0 or greater than or equal to NumPoints.

Remarks

Returns the x- and y-axis coordinates of the raw fixtured point with the given index. Valid indices range from 0 to NumPoints - 1, inclusive.

See Also