Copy the normal X, Y, Z coordinates to the supplied,
previously allocated array of float.
Namespace: Cognex.VisionPro3DAssembly: Cognex.VisionPro.CorePlus (in Cognex.VisionPro.CorePlus.dll) Version: 73.0.0.0
Syntax
Parameters
- dest
- Type: System Single
The destination array of type float. May not be null.
- destStartIndex
- Type: System Int32
A zero based index into the destination array at which copying begins. Note that since we are writing three floats per point, the destStartIndex parameter should be a multiple of three, e.g. 0, 3, 6, and so on.
Implements
ICog3DPointCloudRoot CopyNormalTo( Single , Int32)Exceptions
| Exception | Condition |
|---|---|
| InvalidOperationException | If HasNormal is false. |
| 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