Click or drag to resize

Line3Line3Intersectionsolve Method

intersects given lines and returns resulting end-points and pieces.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Tuple<List<List<Line3>>, List<Point3>> solve(
	List<Line3> lines,
	double ldist
)

Parameters

lines
Type: System.Collections.GenericListLine3
list of lines to be intersected
ldist
Type: SystemDouble
limit length for the smallest segment to be enlisted in the results

Return Value

Type: TupleListListLine3, ListPoint3
Tuple of List of List of line segments. Each sublist corresponds to one input line and contains its pieces. The points-list contains the intersection points
See Also