#include "CmdMediator.h"
#include "DocumentModelCoords.h"
#include "DocumentModelGeneral.h"
#include "MainWindowModel.h"
#include <QPointF>
#include <QString>
#include <QTransform>
Go to the source code of this file.
|
| class | Transformation |
| | Affine transformation between screen and graph coordinates, based on digitized axis points. More...
|
◆ operator<<() [1/2]
| QDebug operator<< |
( |
QDebug | debug, |
|
|
const Transformation & | transformation ) |
Definition at line 289 of file Transformation.cpp.
291{
292 QString text;
293 QTextStream strInner (&text);
295
296 debug << text;
297
298 return debug;
299}
◆ operator<<() [2/2]
| std::ostream & operator<< |
( |
std::ostream & | str, |
|
|
const Transformation & | transformation ) |