New issue 345 by fajran: Rotate application 180deg
http://code.google.com/p/pymt/issues/detail?id=345
Create a way to rotate application 180deg to enable users to use the
application from the other side of the table.
The manual way to do this is by creating a MTScatterPlane, rotate it
180deg, resize it to the size of the window, and use it as the root widget.
See http://paste.pocoo.org/show/275746/ and the attachment.
It would be better if we can do the similar thing by changing a variable in
the window object or in configuration file.
Attachments:
Screenshot-pymt.png 6.4 KB
Comment #1 on issue 345 by txprog: Rotate application 180deg
http://code.google.com/p/pymt/issues/detail?id=345
You can now control
rotation from :
* command line: --rotation / -r (0|90|180|270)
* config file: [graphics] rotation = ...
* code: getWindow().rotation = ...
thanks!