CADability dotNET
Returns true when the triangle defined by tri1, tri2 and tri3 (including the inside of the triangle) and this BoundingCube interfere.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public bool Interferes(
	ref GeoPoint tri1,
	ref GeoPoint tri2,
	ref GeoPoint tri3
)
Visual Basic
Public Function Interferes ( _
	ByRef tri1 As GeoPoint, _
	ByRef tri2 As GeoPoint, _
	ByRef tri3 As GeoPoint _
) As Boolean
Visual C++
public:
bool Interferes(
	GeoPoint% tri1, 
	GeoPoint% tri2, 
	GeoPoint% tri3
)

Parameters

tri1
Type: CADability..::..GeoPoint%
First point of triangle
tri2
Type: CADability..::..GeoPoint%
Second point of triangle
tri3
Type: CADability..::..GeoPoint%
Third point of triangle

Return Value

true if interference, false otherwise

See Also