PlaneIntersect(Line, Point) Method | 
返回用户文档首页
            判断一条直线是否与平面相交,并计算交点。
            
Namespace: LoongCAD.Geometry.FriendlyAssembly: LoongSDKCore (in LoongSDKCore.dll) Version: 2025.0.9.17 (2025.0.9.17)
Syntaxpublic bool Intersect(
	Line line,
	out Point ret_pt
)
Parameters
- line  Line
 - 直线。
 - ret_pt  Point
 - 输出交点。
 
Return Value
Boolean如果射线与平面相交,返回true;否则返回false。
Remarks
            如果射线与平面平行,则返回false。
            
See Also