UFSC Computer Graphics (INE5420) project using Qt for Python.
- Download and uncompress the latest release archive.
- Install dependencies:
pip install -r requirements.txt --user
- Execute the application:
python3 pycg/app.py
Note: you may optionally pass in OBJ files to be loaded on startup.
Run these to setup and test a development environment:
$ # system-specific install of pyside2-uic
$ python -m venv venv
$ source venv/bin/activate
(venv) $ pip install -r requirements.txt
(venv) $ pip install pytest
(venv) $ make clean test run