Cog3DMatrix3x3 OperatorsCognex VisionPro 9.5

The Cog3DMatrix3x3 type exposes the following members.

Operators

  NameDescription
Public operatorStatic memberAddition
Addition operator for one matrix and another matrix, defined as matrix + rhs
Public operatorStatic memberDivision(Double, Cog3DMatrix3x3)
Division operator for a scalar and a matrix. Note that scale / matrix = scale * matrix.Inverse().
Public operatorStatic memberDivision(Cog3DMatrix3x3, Cog3DMatrix3x3)
Division operator for one matrix and another matrix. This operator is defined as matrix / rhs = matrix * rhs.Inverse()
Public operatorStatic memberDivision(Cog3DMatrix3x3, Double)
Division operator for a matrix and a scalar.

Note that matrix / scale = matrix * 1/scale.

Public operatorStatic memberDivision(Cog3DVect3, Cog3DMatrix3x3)
Division operator for a 3D point and a 3D matrix. The definition of this operator is point3D / matrix = point3D * matrix.Inverse().
Public operatorStatic memberMultiply(Double, Cog3DMatrix3x3)
Multiplication operator for a scalar and a matrix.

Note that the definition of this operator is: scale * matrix = matrix * scale.

Public operatorStatic memberMultiply(Cog3DMatrix3x3, Cog3DMatrix3x3)
Operator for composing one matrix and another matrix. Note that the definition of this operation is matrix * rhs.
Public operatorStatic memberMultiply(Cog3DMatrix3x3, Cog3DVect3)
Multiplication operator for a 3D matrix and a 3D point. Note that the definition of this operation is matrix * point3D.
Public operatorStatic memberMultiply(Cog3DMatrix3x3, Double)
Multiplication operator for a matrix and a scalar. Note that the definition of this operation is matrix * scale.
Public operatorStatic memberMultiply(Cog3DVect3, Cog3DMatrix3x3)
Multiplication operator for a 3D point and a 3D matrix. The definition of this operator is point3D * matrix = matrix.Transpose() * point3D.
Public operatorStatic memberSubtraction
Subtraction operator for one matrix and another matrix, defined as matrix - rhs
Public operatorStatic memberUnaryNegation
Unary minus Operator, defined as -matrix
Top
See Also