Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelbrusegard/visual-computing-fundamentals
Graphical primitives, rasterization, anti-aliasing, clipping, geometric transformations, viewing transformations, hierarchical scene modelling, culling and hidden surface elimination, colour representation, illumination models and algorithms.
https://github.com/michaelbrusegard/visual-computing-fundamentals
opengl rust
Last synced: 26 days ago
JSON representation
Graphical primitives, rasterization, anti-aliasing, clipping, geometric transformations, viewing transformations, hierarchical scene modelling, culling and hidden surface elimination, colour representation, illumination models and algorithms.
- Host: GitHub
- URL: https://github.com/michaelbrusegard/visual-computing-fundamentals
- Owner: michaelbrusegard
- Created: 2024-08-19T14:19:24.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-29T14:44:48.000Z (about 1 month ago)
- Last Synced: 2024-09-30T03:01:12.240Z (about 1 month ago)
- Topics: opengl, rust
- Language: Rust
- Homepage:
- Size: 4.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Visual Computing Fundamentals
## Gloom-rs
This is a simple OpenGL Rust project.
To get started enter the project directory:
```bash
cd gloom-rs
```### Requirements
- Rust
- Cargo### Running the Project
You can run the project using the following command:
```bash
cargo run
```This will compile and run the project.
If you want to run the project with rendering on a separate thread, use the following command:
```bash
cargo run --bin thread
```This will run the project with rendering on a separate thread.