Merges the RightSide composed transform into this composed transform, on right. This is the opposite of Split. If Copy is true, RightSide's contained transforms are added to the sequence by value, otherwise they are added by reference.
Assembly: Cognex.Vision.Core.Net (in Cognex.Vision.Core.Net.dll) Version: 9.24.0.0
Parameters
- rightSide
- Type: Cognex.Vision Transform2DComposed
The transformation to merge with this one.
- copy
- Type: System Boolean
If true, the transformations within rightSide are copied into this object. Otherwise, they are added by reference.
| Exception | Condition |
|---|---|
| ArgumentException | rightSide is null. |
Changed Raised when the transformations are merged.
Merges the supplied composed transformation with this one. The supplied transform is composed on the right side of this transformation. This function is the opposite of Split. If copy is true, the transformations contained within rightSide are added by value (copied). If copy is false, then they are added by reference. Unlike Compose, this function modifies the state of this object; it does not return a new transformation.