BoundedPlaneIntersectWith Method (BoundedPlane, Tolerance)
 | 
Creates an intersection line between this and
the passed bounded plane with the specified tolerance.
Namespace:  Teigha.Geometry
Assembly:  TD_Mgd (in TD_Mgd.dll) Version:
21.4.0.0
Syntax
 
public LineSegment3d IntersectWith(
        BoundedPlane plane,
        Tolerance tolerance
)
 
Public Function IntersectWith ( 
        plane As BoundedPlane,
        tolerance As Tolerance
) As LineSegment3d
 
public:
LineSegment3d^ IntersectWith(
        BoundedPlane^ plane, 
        Tolerance tolerance
)
 
member IntersectWith : 
        plane : BoundedPlane * 
        tolerance : Tolerance -> LineSegment3d 
 
 
 
Parameters
- plane
 
- Type: Teigha.GeometryBoundedPlane
[in] Bounded plane to calculate intersection with. 
- tolerance
 
- Type: Teigha.GeometryTolerance
[in] Geometric tolerance. 
Return Value
Type: 
LineSegment3d
A line created by the intersection between this and the passed
bounded plane.
 
See Also