Cog3DShapeGeometricOperations AreRealAntiParallel Method (Cog3DPlane, Cog3DPlane, Double)Cognex VisionPro 9.8
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.VisionPro3D
Assembly: Cognex.VisionPro3D.Core (in Cognex.VisionPro3D.Core.dll) Version: 75.1.0.0
Syntax

public static bool AreRealAntiParallel(
	Cog3DPlane planeA,
	Cog3DPlane planeB,
	double epsilon
)

Return Value

Type: Boolean
True if planeA and planeB are anti-parallel within the specified tolerance, false otherwise.
Exceptions

ExceptionCondition
ArgumentNullException If planeA or planeB is null.
ArgumentException If planeA is degenerate or planeB is degenerate.
Remarks

See section of remarks in AreRealParallel(Cog3DPlane, Cog3DPlane, Double)
See Also