三角形重心
最近在看recast&detour源码的时候有遇到许多数学上的算法问题,特此记录,以便以后查看。
重心坐标系介绍
看懂中文维基百科的第一段。https://zh.wikipedia.org/wiki/%E9%87%8D%E5%BF%83%E5%9D%90%E6%A0%87
三角形重心坐标推导
源码
使用上面推导的公式计算系数是否大于等于0.
bool dtClosestHeightPointTriangle(const float* p, const float* a, const float* b, const float* c, float& h)
{
float v0[3], v1[3], v2[3];
dtVsub(v0, c,a);
dtVsub(v1, b,a);
dtVsub(v2, p,a);
const float dot00 = dtVdot2D(v0, v0);
const float dot01 = dtVdot2D(v0, v1);
const float dot02 = dtVdot2D(v0, v2);
const float dot11 = dtVdot2D(v1, v1);
const float dot12 = dtVdot2D(v1, v2);
// Compute barycentric coordinates
const float invDenom = 1.0f / (dot00 * dot11 - dot01 * dot01);
const float u = (dot11 * dot02 - dot01 * dot12) * invDenom;
const float v = (dot00 * dot12 - dot01 * dot02) * invDenom;
// The (sloppy) epsilon is needed to allow to get height of points which
// are interpolated along the edges of the triangles.
static const float EPS = 1e-4f;
// If point lies inside the triangle, return interpolated ycoord.
if (u >= -EPS && v >= -EPS && (u+v) <= 1+EPS)
{
h = a[1] + v0[1]*u + v1[1]*v;
return true;
}
return false;
}
参考
https://en.wikipedia.org/wiki/Barycentric_coordinate_system
相关阅读
重心:三条中线交点;设三角形重心为O,BC边中点为D,则有AO=2OD。 三角形重心是三点坐标的平均值
1,算法 static double pi = 3.1415926535897932384626; static double a = 6378245.0; static double ee = 0.0066934216229
Craig书中的动力学章节里给出了机器人连杆坐标系原点的角加速度和线加速度递推表达式,但书中只说明了根据哪两个表达式
三角形的重心,外心,垂心,内心和旁心称之为三角形的五心。三角形五心定理是指三角形重心定理,外心定理,垂心定理,内心定理,旁心定理的总称
ROS里基本坐标系的理解:map,odom,base_link,base_laser
初学ROS的,接触到的一部分就是tf坐标变换,下面我介绍下我的理解。最常用的就是map,odom,base_link,base_laser坐标系,这也是开始接触gma