forked from rogii-com/SceneSample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBase2DSceneCoordinatedMapper.cpp
56 lines (44 loc) · 1.58 KB
/
Base2DSceneCoordinatedMapper.cpp
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
53
54
55
56
#include "Base2DSceneCoordinatedMapper.hpp"
namespace rogii
{
namespace
{
QPoint getQRectTrueBottomRight(const QRect & rect)
{
return rect.topLeft() + QPoint(rect.width(), rect.height());
}
QRect createQRectWithTrueBottomRightPoint(const QPoint & topLeft, const QPoint & bottomRight)
{
return QRect(topLeft, QSize(bottomRight.x() - topLeft.x(),
bottomRight.y() - topLeft.y()));
}
} // anonymous namespace
QRectF Base2DSceneCoordinatedMapper::mapToScene(const QRect & windowRectangle) const
{
const QPointF topLeft(mapToScene(windowRectangle.topLeft()));
const QPointF bottomRight(mapToScene(getQRectTrueBottomRight(windowRectangle)));
return { topLeft, bottomRight };
}
QLineF Base2DSceneCoordinatedMapper::mapToScene(const QLine & windowLine) const
{
const QLineF mappedLine(mapToScene(windowLine.p1()), mapToScene(windowLine.p2()));
return mappedLine;
}
QRect Base2DSceneCoordinatedMapper::mapFromScene(const QRectF & sceneRectangle) const
{
return (createQRectWithTrueBottomRightPoint(mapFromScene(sceneRectangle.topLeft()),
mapFromScene(sceneRectangle.bottomRight()))
.normalized());
}
QLine Base2DSceneCoordinatedMapper::mapFromScene(const QLineF & sceneLine) const
{
const QLine mappedLine(mapFromScene(sceneLine.p1()), mapFromScene(sceneLine.p2()));
return mappedLine;
}
QPointF Base2DSceneCoordinatedMapper::mapDeltaToScene(const QPoint & deltaInScreen) const
{
const QPointF zeroOnScene(mapToScene(QPoint(0, 0)));
const QPointF mappedPoint(mapToScene(deltaInScreen));
return mappedPoint - zeroOnScene;
}
} //~namespace rogii