I have a class inherited from QGraphicsObject
,and I have a private QPixmap
variable car. All I want to do is draw this car image in the scene. I want to draw many cars like this. And I need to know whether two cars collides with each other. I rewrite two functions boundingRect() and shape(), but it does not work. For example, here is my code:
QRectF Car::boundingRect() const
{
return QRectF(QPointF(0,0),car.size());
}
QPainterPath Car::shape() const
{
QPainterPath path;
path.addRect(boundingRect());
return path;
}
In the main.cpp, I test it like this:
Car item(Car::RIGHT,10);
item.setPos(QPoint(95,52));
Car item1(Car::RIGHT,10);
item1.setPos(QPoint(95,54));
//item.start();
scene.addItem(&item);
scene.addItem(&item1);
//qDebug()<< item.boundingRect();
if(item.collidesWithItem(&item1)){
qDebug()<<"item collides with item1";
}
But it dose not print "item collides with item1" I supposed. Does anything go wrong?