https://github.com/calciferzh/minimaloptix
A simple path tracing renderer based on OptiX.
https://github.com/calciferzh/minimaloptix
graphics optix raytracing renderer
Last synced: 5 months ago
JSON representation
A simple path tracing renderer based on OptiX.
- Host: GitHub
- URL: https://github.com/calciferzh/minimaloptix
- Owner: CalciferZh
- License: mit
- Created: 2018-11-23T02:46:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-04T01:44:28.000Z (over 7 years ago)
- Last Synced: 2025-04-01T15:11:52.296Z (over 1 year ago)
- Topics: graphics, optix, raytracing, renderer
- Language: C++
- Homepage:
- Size: 27.1 MB
- Stars: 21
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinimalOptiX
MinimalOptiX is a simple path tracing rendered based on [OptiX](https://developer.nvidia.com/optix). I don't expect anyone to really use this project, but I hope it can help beginners to get familiar with OptiX.
## Demos
### Cornell Box

### Spheres - Pinhole Camera

### Spheres - Lens Camera

### Random Spheres

We also have a video [here](https://youtu.be/LYERSPoh_GA).
### Coffee Pot

### Spaceship

### Bedroom

### Dining Room

### Stormtrooper

### Hyperion


## Features
### Geometry and Scene
MinimalOptiX supports sphere, quadrangle, and triangle mesh. It can load scene description from file dynamically.
### Material
MinimalOptiX supports three basic materials: Lambertian, metal and glass. It also implements [Disney BRDF](https://disney-animation.s3.amazonaws.com/library/s2012_pbs_disney_brdf_notes_v2.pdf).
## Credits
* BRDF evaluation comes from [here](https://github.com/wdas/brdf/blob/master/src/brdfs/disney.brdf).
* Sampling, PDF and scenes come from [Optix-PathTracer](https://github.com/knightcrawler25/Optix-PathTracer). Well, his results are better than mine.
* .obj file loader comes from [TinyObjLoader](https://github.com/syoyo/tinyobjloader).