CogTransform2DComposed PushOntoRight Method Cognex VisionPro 9.7
Composes the RightSide transform into this composed transform on the right. If Copy is True, the transform is added to the sequence by value, otherwise it's added by reference.

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 73.0.0.0
Syntax

public void PushOntoRight(
	ICogTransform2D rightSide,
	bool copy
)

Parameters

rightSide
Type: Cognex.VisionPro ICogTransform2D

The transformation to push onto this one.

copy
Type: System Boolean

If true, rightSide is copied into this object. Otherwise, it is added by reference.

Events

Event TypeReason
CogTransform2DComposed Changed

Fires when a transformation is pushed.

The following state flags may be affected:

    Exceptions

    ExceptionCondition
    ArgumentException

    rightSide is NULL.

    Remarks

    Composes the rightSide transform into this composed transform on the right side of this transformation. If copy is true, the rightSide transformation is added by value (copied). If copy is false, then it is added by reference. Note that this will increase the index of all contained transforms by one.

    See Also