diff --git a/MathLib/Point3d.h b/MathLib/Point3d.h index 938bf88807ec078eaf64c4e46e3a70037e08cac5..f658e1c8a551c3fc1770ea52e3af6e0198450b7d 100644 --- a/MathLib/Point3d.h +++ b/MathLib/Point3d.h @@ -50,6 +50,14 @@ double sqrDist(MathLib::Point3d const& p0, MathLib::Point3d const& p1) return MathLib::scalarProduct<double,3>(v,v); } +/// Computes the squared distance between the orthogonal projection of the two +/// points \c p0 and \c p1 onto the \f$xy\f$-plane. +inline +double sqrDist2d(MathLib::Point3d const& p0, MathLib::Point3d const& p1) +{ + return (p0[0]-p1[0])*(p0[0]-p1[0]) + (p0[1]-p1[1])*(p0[1]-p1[1]); +} + } // end namespace MathLib #endif /* POINT3D_H_ */