Engauge Digitizer 2
Loading...
Searching...
No Matches
Transformation.h File Reference
#include "CmdMediator.h"
#include "DocumentModelCoords.h"
#include "DocumentModelGeneral.h"
#include "MainWindowModel.h"
#include <QPointF>
#include <QString>
#include <QTransform>
Include dependency graph for Transformation.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Transformation
 Affine transformation between screen and graph coordinates, based on digitized axis points. More...

Functions

std::ostream & operator<< (std::ostream &str, const Transformation &transformation)
 Stream operator.
QDebug operator<< (QDebug debug, const Transformation &transformation)

Function Documentation

◆ 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);
294 transformation.printStream ("", strInner);
295
296 debug << text;
297
298 return debug;
299}
void printStream(QString indentation, QTextStream &str) const
Debugging method that supports print method of this class and printStream method of some other class(...

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & str,
const Transformation & transformation )

Stream operator.