diff options
author | Treeki <treeki@gmail.com> | 2010-10-07 23:48:57 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2010-10-07 23:48:57 +0200 |
commit | 532859713aaf0fdf482ee7d68676f6927a800eeb (patch) | |
tree | 304c7d60b76c0a91296087927d52360a627478c0 /lyt/materials/texsrt.h | |
parent | 5f6dad55d75cbe146ff7fefc899a02ccd39078ba (diff) | |
download | LayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.tar.gz LayoutStudio-532859713aaf0fdf482ee7d68676f6927a800eeb.zip |
implemented some more material stuff; added readme
Diffstat (limited to 'lyt/materials/texsrt.h')
-rw-r--r-- | lyt/materials/texsrt.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lyt/materials/texsrt.h b/lyt/materials/texsrt.h new file mode 100644 index 0000000..ad5e470 --- /dev/null +++ b/lyt/materials/texsrt.h @@ -0,0 +1,23 @@ +#ifndef LYTTEXSRT_H +#define LYTTEXSRT_H + +#include "../common.h" +#include <QtCore/QDataStream> + +class LYTTexSRT { +public: + LYTTexSRT(); + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in); + + void dumpToDebug(); + + float xTrans; + float yTrans; + float rotate; + float xScale; + float yScale; +}; + +#endif // LYTTEXSRT_H |