OpenCASCADE库-三维点投影到三维曲线

21 篇文章 0 订阅
19 篇文章 0 订阅
本文详细介绍了如何在OCC库的samplemfc工程中使用GeomAPI_ProjectPointOnCurve函数进行三维点到曲线的投影,包括不同类型的曲线处理,以及相关几何算法的实现和应用。
摘要由CSDN通过智能技术生成

下面是OCC库中的sample mfc工程中点投影到曲线类GeomAPI_ProjectPointOnCurve用法。
N是三维点P投影到曲线C的最近点,投影点个数为NbResults,Point(…)返回投影点
可以把Geom_Circle换成Geom_XXX.hxx中的其它种类的参数曲线试试,OCC中有直线,二次曲线,样条曲线,分2d曲线和空间3d曲线。

...
gp_Pnt N,Q,P(1,2,3);
Standard_Real distance, radius = 5;
Handle(Geom_Curve) C = new Geom_Circle(gp::XOY(),radius);
GeomAPI_ProjectPointOnCurve PPC (P,C);
N = PPC.NearestPoint();
Standard_Integer NbResults = PPC.NbPoints();

if(NbResults>0)
{
    for(Standard_Integer i = 1;i<=NbResults;i++)
    {
      Q = PPC.Point(i);
      distance = PPC.Distance(i);
      // do something with Q or distance here
      ...
    }
}

GeomAPI_XXX有下面一些类
class GeomAPI_ProjectPointOnCurve;
class GeomAPI_ProjectPointOnSurf;
class GeomAPI_ExtremaCurveCurve;
class GeomAPI_ExtremaCurveSurface;
class GeomAPI_ExtremaSurfaceSurface;
class GeomAPI_PointsToBSpline;
class GeomAPI_PointsToBSplineSurface;
class GeomAPI_Interpolate;
class GeomAPI_IntSS;
class GeomAPI_IntCS;
实现了点投影到曲线曲面(Project),曲线曲面相互之间的极值(extrema),点到样条曲线样条曲面,面面求相交曲线(intss),线面求相交点或者交线(intcs),多个点插值为样条线 这些几何算法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值