Returns a new rigid transform which is the composition of the given transform (on the right side) and this one (on the left side).
Namespace: Cognex.VisionProAssembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 69.0.0.0
Syntax
Parameters
- rightSide
- Type: Cognex.VisionPro CogTransform2DRigid
The transformation to compose with this one.
Return Value
Type: CogTransform2DRigidThe result of the composition.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentException | If rightSide is NULL. |
Remarks
Compose(CogTransform2DLinear) performs the same operation as the ComposeBase(ICogTransform2D) method of ICogTransform2D. The only difference is the type of the returned object:CogTransform2DRigid.Compose(CogTransform2DRigid) method returns a rigid transform.
See Also