Cog3DPointCloudTriangle Constructor Cognex VisionPro 9.5
Construct Cog3DPointCloudTriangle from supplied values.

Namespace: Cognex.VisionPro3D
Assembly: Cognex.VisionPro.CorePlus (in Cognex.VisionPro.CorePlus.dll) Version: 69.0.0.0
Syntax

public Cog3DPointCloudTriangle(
	int triangleIndex,
	int rootIndex,
	int pointIndex1,
	float positionX1,
	float positionY1,
	float positionZ1,
	int pointIndex2,
	float positionX2,
	float positionY2,
	float positionZ2,
	int pointIndex3,
	float positionX3,
	float positionY3,
	float positionZ3
)

Parameters

triangleIndex
Type: System Int32
The initial triangle index.
rootIndex
Type: System Int32
The initial root index.
pointIndex1
Type: System Int32
The initial first point index.
positionX1
Type: System Single
The initial first point's X value.
positionY1
Type: System Single
The initial first point's Y value.
positionZ1
Type: System Single
The initial first point's Z value.
pointIndex2
Type: System Int32
The initial second point index.
positionX2
Type: System Single
The initial second point's X value.
positionY2
Type: System Single
The initial second point's Y value.
positionZ2
Type: System Single
The initial second point's Z value.
pointIndex3
Type: System Int32
The initial third point index.
positionX3
Type: System Single
The initial third point's X value.
positionY3
Type: System Single
The initial third point's Y value.
positionZ3
Type: System Single
The initial third point's Z value.
Exceptions

ExceptionCondition
ArgumentException If the first point index is less than zero or the second point index is less than zero or the third point index is less than zero.
See Also