Cog3DMatrix3x3 Division Operator (Double, Cog3DMatrix3x3)Cognex VisionPro 9.21 SR1
Division operator for a scalar and a matrix. Note that scale / matrix = scale * matrix.Inverse().

Namespace: Cognex.VisionPro3D
Assembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 85.1.0.0
Syntax

public static Cog3DMatrix3x3 operator /(
	double scale,
	Cog3DMatrix3x3 matrix
)

Parameters

scale
Type: System Double
The scale factor.
matrix
Type: Cognex.VisionPro3D Cog3DMatrix3x3
The 3D matrix. May not be null.

Return Value

Type: Cog3DMatrix3x3
The scaled matrix.
Exceptions

ExceptionCondition
ArgumentNullException If matrix is null.
See Also