Cog3DPointCloudMeshRoot Constructor (Int32,  Cog3DPointCloudAttribute3F )Cognex VisionPro 9.8
Construct this mesh root from the supplied position data.

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

public Cog3DPointCloudMeshRoot(
	int width,
	Cog3DPointCloudAttribute3F[] positions
)

Parameters

width
Type: System Int32
The number of columns in this mesh root. Must be greater than zero.
positions
Type:  Cognex.VisionPro3D Cog3DPointCloudAttribute3F 
A one dimensional array of points that each specify the X,Y,Z coordinates of a single surface point in storage space along with a validity byte. This array is assumed to be in row-major format where each row holds width many points. This parameter may not be null.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException If width is less than one.
ArgumentOutOfRangeException If the number of points is not an even multiple of width.
ArgumentNullException If positions is null.
OutOfMemoryException If sufficient storage cannot be allocated.
See Also