Cog3DPlane Constructor (Cog3DVect3, Double)Cognex VisionPro
Constructs a plane using the specified normal and an offset. The offset is the translation of the plane from the origin along the normal direction. The specified normal is normalized to a unit vector.

Note that the following point is on the plane: offset * normal3D / normal3D.Length

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

public Cog3DPlane(
	Cog3DVect3 normal3D,
	double offset
)

Parameters

normal3D
Type: Cognex.VisionPro3D Cog3DVect3
The normal of the plane being constructed. The specified normal is normalized to a unit vector.
offset
Type: System Double
The translation of the plane from the origin along the normal direction.
Exceptions

ExceptionCondition
ArgumentException If normal3D is (0,0,0).
See Also