├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── src ├── ViewportPainter.py └── example.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/README.md -------------------------------------------------------------------------------- /src/ViewportPainter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/src/ViewportPainter.py -------------------------------------------------------------------------------- /src/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volodinroman/OpenGLViewportRuler-maya2016/HEAD/src/example.py --------------------------------------------------------------------------------