Cog3DPointCloudMeshRoot CopyPositionAndValidityTo Method Cognex VisionPro 9.22 SR1
Copy the position attribute data (X, Y, Z coordinates and position validity values) to the supplied, previously allocated array of Cog3DPointCloudAttribute3F. Writing starts at the specified element of the destination array.

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

public virtual void CopyPositionAndValidityTo(
	Cog3DPointCloudAttribute3F[] dest,
	int destStartIndex
)

Parameters

dest
Type:  Cognex.VisionPro3D Cog3DPointCloudAttribute3F 
The destination array of type Cog3DPointCloudAttribute3F. May not be null.
destStartIndex
Type: System Int32
A zero based index into the destination array at which copying begins.

Implements

ICog3DPointCloudRoot CopyPositionAndValidityTo( Cog3DPointCloudAttribute3F , Int32)
Exceptions

ExceptionCondition
ArgumentNullException If dest is null.
ArgumentOutOfRangeException If destStartIndex is not valid.
ArgumentException If dest is not of rank 1.
ArgumentException If dest does not have zero based indexing.
ArgumentException If the requested data will not fit into the destination array starting at the specified index.
See Also