Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drewxs/axis
Graphics engine
https://github.com/drewxs/axis
Last synced: 5 days ago
JSON representation
Graphics engine
- Host: GitHub
- URL: https://github.com/drewxs/axis
- Owner: drewxs
- License: apache-2.0
- Created: 2024-03-28T05:04:39.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-01T09:44:38.000Z (11 months ago)
- Last Synced: 2024-04-01T14:26:15.598Z (11 months ago)
- Language: Rust
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Axis
Simple graphics engine using OpenGL.
There are both low-level and high-level APIs available. The low-level APIs are thin wrappers around OpenGL,
and the high-level APIs (e.g. Mesh) are built on top of the low-level APIs.To see examples of how to use the engine, see [`engine_tester/src/examples`](engine_tester/src/examples)
The examples go in order: low-level -> high-level
Simple usage [example](engine_tester/src/examples/example_03.rs).