摘要: 空间两条曲线求交点:
c1为curve已知
c1为curve已知
Point3dCollection m_ints = new Point3dCollection();
如果两曲线均不为三维多段线或则两曲线均为三维多段线,则有:
c1.IntersectWith(c2,Intersect.OnBothOperands, new Plane(),m_ints, 0, 0);得出的所有交点在c1曲线上
c2.IntersectWith(c1,Intersect.OnBothOperands, new Plane(),m_ints, 0, 0);得出的所有交点在c2曲线上
阅读全文