Check whether two planes are anti-parallel
within the specified tolerance.
It is the caller responsibility to map the shapes to a common 3D
space before calling this method.
Namespace: Cognex.VisionPro3DAssembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 75.1.0.0
Syntax
Parameters
- planeA
- Type: Cognex.VisionPro3D Cog3DPlane
The first plane. May not be null.
- planeB
- Type: Cognex.VisionPro3D Cog3DPlane
The second plane. May not be null.
- epsilon
- Type: System Double
The tolerance used in checking.
Return Value
Type: BooleanTrue if planeA and planeB are anti-parallel within the specified tolerance, false otherwise.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | If planeA or planeB is null. |
| ArgumentException | If planeA is degenerate or planeB is degenerate. |
Remarks
See Also