Skip to content

RamAddict/Interactive-Graphical-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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