An open API service indexing awesome lists of open source software.

https://github.com/shihabshahrier/computergraphics_assignments

CSE423
https://github.com/shihabshahrier/computergraphics_assignments

aabb collision-detection glut keyboard-events midpoint-circle-algorithm midpoint-line-algorithm mouse-events pyopengl

Last synced: 9 months ago
JSON representation

CSE423

Awesome Lists containing this project

README

          

## Install Python
```
sudo apt-get install python3 // ubuntu
brew install python3 // mac
```

## Install pip3
```
sudo apt-get install python3-pip
```

## Install virtualenv
```
sudo pip3 install virtualenv
```

## Create virtualenv
```
virtualenv -p python3 venv
```
## Activate virtualenv
```
source venv/bin/activate
```

## Install requirements
```
pip3 install pyopengl
pip3 install pyopengl_accelerate
```