本文整理汇总了C++中line::slope方法的典型用法代码示例。如果您正苦于以下问题:C++ line::slope方法的具体用法?C++ line::slope怎么用?C++ line::slope使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类line
的用法示例。
在下文中一共展示了line::slope方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: intersection
// gets the intersection between two lines (not segments)
// ot : the other line
// if they are equal, returns nan
// if they are parallel, returns inf
// else, returns the x on which the intersection occurs
double intersection (const line<cood> & ot) const {
double a[2] = {slope(), ot.slope()};
double b[2] = {intercept(a[0]), ot.intercept(a[1])};
if (abs(a[0]-a[1]) < eps) {
if (abs(b[0]-b[1]) < eps) return 0./0.;
return 1./0.;
} else {
debug("%.2f/%.2f", b[0]-b[1], a[1]-a[0]);
return (b[0]-b[1])/(a[1]-a[0]);
}
return true;
}