本文整理汇总了C++中point::distance方法的典型用法代码示例。如果您正苦于以下问题:C++ point::distance方法的具体用法?C++ point::distance怎么用?C++ point::distance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类point
的用法示例。
在下文中一共展示了point::distance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: comp
int comp (const point &A, const point &B)
{
int cnt = A.ccw(B, reference_point);
if (cnt == 0)
{
float dist_B = reference_point.distance (B);
float dist_A = reference_point.distance (A);
return (dist_A < dist_B);
}
return (cnt > 0);
}
示例2: point
circle(const point& p, const point& q, const point& r) {
auto a = 2 * (q.x - p.x);
auto b = 2 * (q.y - p.y);
auto c = 2 * (r.x - p.x);
auto d = 2 * (r.y - p.y);
auto det = a * d - b * c;
auto k1 = (q.x * q.x + q.y * q.y) - (p.x * p.x + p.y * p.y);
auto k2 = (r.x * r.x + r.y * r.y) - (p.x * p.x + p.y * p.y);
auto cx = (k1 * d - k2 * b) / det;
auto cy = (a * k2 - c * k1) / det;
center = point(cx, cy);
radius = center.distance(p);
}
示例3: findNearestBludger
int findNearestBludger(point p){
int res = -1;
float minDist = 100000;
REP(i, n){
if(obj[i].type[0] == 'B' ){
float dist = p.distance(obj[i].loc);
if(dist < minDist){
res = i;
minDist = dist;
}
}
}
return res;
}