Functions | |
template<typename PointT > | |
float | distance (const PointT &p1, const PointT &p2) |
template<typename PointT , typename NormalT > | |
void | project (const PointT &point, const PointT &plane_origin, const NormalT &plane_normal, PointT &projected) |
void | project (const Eigen::Vector3f &point, const Eigen::Vector3f &plane_origin, const Eigen::Vector3f &plane_normal, Eigen::Vector3f &projected) |
template<typename PointT > | |
float | squaredDistance (const PointT &p1, const PointT &p2) |
float pcl::geometry::distance | ( | const PointT & | p1, |
const PointT & | p2 | ||
) | [inline] |
Definition at line 55 of file common/include/pcl/common/geometry.h.
void pcl::geometry::project | ( | const PointT & | point, |
const PointT & | plane_origin, | ||
const NormalT & | plane_normal, | ||
PointT & | projected | ||
) | [inline] |
point | Point to be projected |
plane_origin | The plane origin |
plane_normal | The plane normal |
projected | The returned projected point |
Definition at line 74 of file common/include/pcl/common/geometry.h.
void pcl::geometry::project | ( | const Eigen::Vector3f & | point, |
const Eigen::Vector3f & | plane_origin, | ||
const Eigen::Vector3f & | plane_normal, | ||
Eigen::Vector3f & | projected | ||
) | [inline] |
point | Point to be projected |
plane_origin | The plane origin |
plane_normal | The plane normal |
projected | The returned projected point |
Definition at line 87 of file common/include/pcl/common/geometry.h.
float pcl::geometry::squaredDistance | ( | const PointT & | p1, |
const PointT & | p2 | ||
) | [inline] |
Definition at line 62 of file common/include/pcl/common/geometry.h.