-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplank.h
52 lines (29 loc) · 1.52 KB
/
plank.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef PLANK_H
#define PLANK_H
#include "mygraphicsitem.h"
//class Plank: public MovingFigure
//{
// Q_OBJECT
//private:
//public:
// Plank(qreal, qreal,qreal, qreal);
//public:
// virtual void physics (MovingFigure *figure=0) override;
// virtual QRectF boundingRect() const override{
// return QRect(this->getX(),this->getY(),this->getWidth(),this->getHeight()/*m_x,m_y, m_width, m_height*/);
// }
// virtual QPainterPath shape()const override{ //переопределяю для точного определяения границ (для проверки на столкновения).
// // используется в collidesWithItem() при углубленной проверки (авт-ки)
// QPainterPath path;
// path.addRect(this->boundingRect()); //если фигура будет элиипсом, то изменить !!!
// return path;
// }
// virtual void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override {
// painter->setRenderHint(QPainter::Antialiasing,true); //сглаживание
// painter->setBrush(Qt::white);
// painter->drawRect(this->getX(),this->getY(),this->getWidth(),this->getHeight()/*m_x,m_y,m_width,m_height*/);
// // painter->setBrush(Qt::yellow);
// // painter->drawRect(this->getX()+this->getWidth()/5,this->getY()+this->getHeight()/5,this->getWidth()/3,this->getHeight()/3);
// }
//};
#endif // PLANK_H