已知四个点ABPQ,求Q点在ABP平面的投影点。如果已经共面了,投影点和Q重合

投影点设为M,则有向量QM,ABP的法向 和QM是平行的。

平面的方程为 Ax+By+Cz+D=0;

cpp 复制代码
    //* \author  PangYeYi
  //   *  \return Q2 在 P1 P2 Q1 构成的平面的上的投影点
  //   ******************/
    Point3d VEC3::GetProPointOn_Face(const Point3d& P1, const Point3d& P2, const Point3d& Q1, const Point3d& Q2)
    {

        UGAPI::StrPoint P(P1);
        UGAPI::StrPoint Q(P2);
        UGAPI::StrPoint A(Q1);
        UGAPI::StrPoint B(Q2);
        UGAPI::StrPoint PQ = Q - P;
        UGAPI::StrPoint PA = A - P;
        UGAPI::StrPoint normal = PQ.cross(PA);// 法向 叉乘 

      
   
        double D = 0;
        if (normal.point[0] == 0 && normal.point[1] == 0 && normal.point[2] == 0)//平行
        {
            return Point3d(0, 0, 0);

        }
        else
        {    //平面方程  Ax+By+Cz+D=0;  A  B  C 为法向 
            D = (normal.point[0] * P1.X + normal.point[1] * P1.Y + normal.point[2] * P1.Z) * (-1);
        }

     
        double t = normal.point[0] * Q2.X + normal.point[1] * Q2.Y + normal.point[2] * Q2.Z + D;

        //平面法向量 normal 的模长的平方
        double T = normal.point[0] * normal.point[0] + normal.point[1] * normal.point[1] + normal.point[2] * normal.point[2];
      
        UGAPI::StrPoint  res = B + normal * ((-t) / T);// 比例

        return res.ToPoint3d();
    }
相关推荐
不二青衣6 天前
利用平面进行位姿约束优化
算法·平面
昵称难产中6 天前
浅谈计算机网络02 | SDN控制平面
网络协议·计算机网络·平面·云计算·信息与通信
不二青衣6 天前
使用gtsam添加OrientedPlane3Factor平面约束因子
人工智能·算法·平面
昵称难产中6 天前
浅谈计算机网络01 | SDN数据平面
网络·计算机网络·平面
红黑色的圣西罗14 天前
Unity 中计算射线和平面相交距离的原理
平面·unity·游戏引擎
Pipi_Xia_19 天前
相切于球体上定点的平面
线性代数·算法·平面·几何学
Pipi_Xia_20 天前
过圆外一点与圆相切的直线
线性代数·算法·平面·几何学
晨航1 个月前
5个实用的设计相关的AI网站
人工智能·平面·交互
老歌老听老掉牙1 个月前
python之求平面离散点集围成的面积
python·平面·面积·鞋带公式
十年一梦实验室1 个月前
【C++】sophus : geometry.hpp 位姿(SE2 和 SE3)和(2D 直线\3D 平面)转换函数 (五)
开发语言·c++·平面·3d