0

我在 QT Creator 工作。我想找到两点的斜率。对于两点 A(x1,y1) , B(x2,y2) 使用斜率公式

m = (y2-y1)/(x2-x1)。

问题 :

点存储在列表 p 中。我想从这个列表中一次取两个点,并找到两个点的斜率直到列表的末尾。

例如,如果列表包含 5 个点 {a,b,c,d,e}。我想找到 1.ab 2.bc 3.cd 4.de 的斜率

代码:

    QList< QgsPoint > p;
    {
    /* some Process */ 

     p.push_front( path->vertex( e.inVertex() ).point() ); /* some points are added to list*/
    }

    QList< QgsPoint>::iterator it;   
    for ( it = p.begin(); it != p.end(); ++it )
    {
    mrbPath->addPoint( *it );
    }
4

3 回答 3

0

你可以在没有迭代器的情况下做到这一点。可能你会发现这段代码更干净:

for(int i = 0; i <= list.count() - 2; i++) {
  QgsPoint a = list[i], b = list[i + 1];
  //...
}
于 2013-09-28T00:55:29.880 回答
0

您可以使用java 风格的迭代器

QListIterator<QgsPoint> i(p);
while(i.hasNext())
{
    if(!i.hasPrevious())
    {
        i.next();
        continue;
    }
    m = (i.peekNext().y() - i.peekPrevious().y()) / (i.peekNext().x()-i.peekPrevious().x());
    i.next();
}
于 2013-09-27T11:56:27.920 回答
0

@itwasntpete 的评论是正确的答案。但是,如果您愿意,可以使用一个迭代器来完成:

for( QList< QgsPoint >::iterator it = p.empty() ? p.begin() - 1 : p.begin(); it + 1 != p.end(); ++it )
{
    const float slope = ( it[1].y() - it->y() ) / ( it[1].x() - it->x() );
    //Do something with slope here
}
于 2013-09-27T12:02:08.880 回答