Transform2DComposed MethodsCognex VisionPro 9.20

The Transform2DComposed type exposes the following members.

Methods

  NameDescription
Public methodBestFitLinearTransform

Returns a new linear transform which best describes this transform over the given set of points. The points must be expressed in 'from' coordinates.

Public methodCanonize

Returns the canonical form of this composed transform. This is the mathematically equivalent form that has the fewest number of transforms. If TypeSimplify is True, the returned type may be reduced to a type simpler than this.

Public methodCompose

Returns a new transform which is the composition of the given transform (on the right side) and this one (on the left side).

Public methodComposeBase

Returns a new transform which is the composition of the given transform (on the right side) and this one (on the left side).

Public methodCopy

Returns a new copy of this composed transform.

Public methodCopyBase

Returns a new copy of this transform.

Public methodEquals
Compares the equality of this object with another.
(Overrides ChangedEventShareableBase Equals(Object).)
Public methodGetHashCode
Returns the hash code of this object.
(Overrides ChangedEventShareableBase GetHashCode .)
Public methodGetTransform

Returns a reference to the transform at the specified index in the contained sequence.

Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetTypeMeta

Get the TypeMeta that describes the type of this object.

(Overrides ShareableBase GetTypeMeta .)
Public methodInvert

Returns a new transform that is the inverse of this one.

Public methodInvertBase

Returns a new transform which is the inverse of this one.

Public methodLinearTransform

Returns a new linear transform which best describes this transform at the given point. The point must be expressed in 'from' coordinates.

Public methodMapPoint

Maps the given x,y point through this transform, filling in the mapped x,y coordinates.

Public methodMapPoints

Map the supplied points through this transform.

Public methodMerge

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.

Public methodPopFromLeft

Removes and returns the left-most transform from the contained sequence. Note that this will decrease the index of all remaining transforms in the contained sequence by one.

Public methodPopFromRight

Removes and returns the right-most transform from the contained sequence.

Public methodPushOntoLeft(ITransform2D)

Composes the LeftSide transform into this composed transform on the left. The transform is added to the sequence by copy.

Public methodPushOntoLeft(ITransform2D, Boolean)

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.

Public methodPushOntoRight(ITransform2D)

Composes the RightSide transform into this composed transform on the right. The transform is added to the sequence by copy.

Public methodPushOntoRight(ITransform2D, Boolean)

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.

Public methodReplace

Replaces the transform at the given index with the passed Replacement transform. If Copy is True, the Replacement transform is added by value, otherwise, it is added by reference.

Public methodResumeAndRaiseChangedEvent

Re-enables raising of the ChangedEvent after SuspendChangedEvent has been called, and raises the ChangedEvent if the ChangedEventSuspended count is reduced to zero and any changes were made while events were suspended. Must be called once for each call to SuspendChangedEvent.

(Overrides ChangedEventShareableBase ResumeAndRaiseChangedEvent .)
Public methodSplit

Splits this composed transform into two composed transforms just before Index. This object becomes the left part and the right part is returned.

Public methodSuspendChangedEvent

Temporarily suspends the raising of the ChangedEvent. May be called more than once, and a corresponding call to ResumeAndRaiseChangedEvent must be made for each call to SuspendChangedEvent.

(Overrides ChangedEventShareableBase SuspendChangedEvent .)
Public methodToString

Returns a human readable string that represents the object.

(Overrides Object ToString .)
Top
See Also