CADability dotNET
Returns the intersectionpoints of this surface with the line given by the parameters. Teh returned point are in the parametric (u/v) space of this surface.

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

Syntax

C#
GeoPoint2D[] GetLineIntersection(
	GeoPoint startPoint,
	GeoVector direction
)
Visual Basic
Function GetLineIntersection ( _
	startPoint As GeoPoint, _
	direction As GeoVector _
) As GeoPoint2D()
Visual C++
array<GeoPoint2D>^ GetLineIntersection(
	GeoPoint startPoint, 
	GeoVector direction
)

Parameters

startPoint
Type: CADability..::..GeoPoint
startpoint of the line
direction
Type: CADability..::..GeoVector
direction of the line

Return Value

See Also