MathHelperIsLineFullyContained Method
|
Checks if line2 is fully contained within line1 (colinear and within bounds).
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic static bool IsLineFullyContained(
Line line1,
Line line2
)
Public Shared Function IsLineFullyContained (
line1 As Line,
line2 As Line
) As Boolean
public:
static bool IsLineFullyContained(
Line^ line1,
Line^ line2
)
static member IsLineFullyContained :
line1 : Line *
line2 : Line -> bool
STATIC METHOD IsLineFullyContained(
line1 AS Line,
line2 AS Line
) AS LOGIC
Parameters
- line1
- Type: DXFReaderNET.EntitiesLine
The potentially containing line. - line2
- Type: DXFReaderNET.EntitiesLine
The line to check if it's contained.
Return Value
Type:
BooleanTrue if line2 is fully contained within line1; otherwise false.
See Also