---
## Overview
**Aurora Rendering Engine (ARE)** is a high-performance path tracing library developed in C++ by **NanoEra Studio**.
## Dependencies
- **OpenGL 4.3**
- **GLFW**
- **GLAD**
- **GLM**
- **stb-image**
- **spdlog**
## Quick Start
### Clone Repository
```bash
git clone https://github.com/NanoEra/aurora-rendering-engine.git
cd aurora-rendering-engine
```
### Build Project
```bash
mkdir build && cd build
cmake ..
cmake --build .
```
## Example
Here is a cornell box demo using ARE:
```cpp
#include