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
- Host: GitHub
- URL: https://github.com/shihabshahrier/computergraphics_assignments
- Owner: shihabshahrier
- Created: 2023-10-26T04:21:41.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-03T11:14:34.000Z (about 2 years ago)
- Last Synced: 2025-01-26T06:13:19.143Z (11 months ago)
- Topics: aabb, collision-detection, glut, keyboard-events, midpoint-circle-algorithm, midpoint-line-algorithm, mouse-events, pyopengl
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```