OCCT中的线 (Geom_Line)
程序员文章站
2022-04-15 12:40:21
...
描述一条*的线。通过空间中的“原点”和“方向”定义。
Geom_Line的参数化表示为:
P(u)= O + u * Dir
其中,P的线上的点,O是原点,Dir是单位方向向量,参数u的范围是。
线的构造方法如下:
Geom_Line::Geom_Line (const gp_Ax1& A) : pos (A) { }
创建三维空间中的线,A是线的定位轴,A的位置是线的原点。
Geom_Line::Geom_Line (const gp_Lin& L) : pos (L.Position()) { }
通过gp中的非临时线创建新的线。
Geom_Line::Geom_Line (const gp_Pnt& P, const gp_Dir& V) : pos (P, V) { }
P和V分别是线的定位轴线的原点和单位方向向量。
上一篇: axios里post的传参方式
下一篇: http请求(get post)