CADability dotNET
Returns true if the given line intersects the this bounding cube. Returns false otherwise.

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

Syntax

C#
public bool Interferes(
	GeoPoint start,
	GeoVector dir,
	double maxdist,
	bool onlyForward
)
Visual Basic
Public Function Interferes ( _
	start As GeoPoint, _
	dir As GeoVector, _
	maxdist As Double, _
	onlyForward As Boolean _
) As Boolean
Visual C++
public:
bool Interferes(
	GeoPoint start, 
	GeoVector dir, 
	double maxdist, 
	bool onlyForward
)

Parameters

start
Type: CADability..::..GeoPoint
Startpoint of the line
dir
Type: CADability..::..GeoVector
Direction of the line
maxdist
Type: System..::..Double
Maximum allowable distance from the line
onlyForward
Type: System..::..Boolean
Set to true, if only the positive ray should be cinsidered

Return Value

See Also