OpenCasCade取TopoDS_Edge的首尾端点
Posted zx62136
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCasCade取TopoDS_Edge的首尾端点相关的知识,希望对你有一定的参考价值。
TopoDS_Edge Edge1 = BRepBuilderAPI_MakeEdge(gp_Pnt(0,0,0), gp_Pnt(1,1,1));
Standard_Real first, last;
Handle(Geom_Curve) aCurve = BRep_Tool::Curve(Edge1, first, last);
gp_Pnt StrPnt = aCurve->Value(first);
gp_Pnt EndPnt = aCurve->Value(last);
tips:转成Geom_Curve的句柄再提取
以上是关于OpenCasCade取TopoDS_Edge的首尾端点的主要内容,如果未能解决你的问题,请参考以下文章