Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.25 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.25 KB

Interactive Graphical System

Lines of code GitHub release

UFSC Computer Graphics (INE5420) project using Qt for Python.

3D

2D Color

Installation

Use

  1. Download and uncompress the latest release archive.
  2. Install dependencies: pip install -r requirements.txt --user
  3. Execute the application: python3 pycg/app.py
    Note: you may optionally pass in OBJ files to be loaded on startup.

Dev

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