CogTransform2DComposed PushOntoLeft Method Cognex VisionPro 9.8
Composes the LeftSide transform into this composed transform on the left. If Copy is True, the transform is added to the sequence by value, otherwise it's added by reference. Note that this will increase the index of all contained transforms by one.

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

public void PushOntoLeft(
	ICogTransform2D leftSide,
	bool copy
)

Parameters

leftSide
Type: Cognex.VisionPro ICogTransform2D

The transformation to push onto this one.

copy
Type: System Boolean

If true, leftSide 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

    leftSide is NULL.

    Remarks

    Composes the leftSide transform into this composed transform on the left side of this transformation. If copy is true, the leftSide 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