|
ILoop2Intersects Method
|
Checks whether the line between point0 and point1 intersects the polygon. If so
returns the intersection point in point2.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxbool Intersects(
Line2 line,
ref Point2 pointIntersect
)
Function Intersects (
line As Line2,
ByRef pointIntersect As Point2
) As Boolean
bool Intersects(
Line2^ line,
Point2% pointIntersect
)
abstract Intersects :
line : Line2 *
pointIntersect : Point2 byref -> bool
Parameters
- line
- Type: Karamba.GeometryLine2
line tested for intersection. - pointIntersect
- Type: Karamba.GeometryPoint2
intersection point in case of intersection.
Return Value
Type:
Booleantrue in case of intersection.
See Also