https://github.com/apachecn-archive/rpt

https://github.com/apachecn-archive/rpt

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.1%) to scientific vocabulary
Last synced: 6 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: apachecn-archive
  • License: apache-2.0
  • Language: Rust
  • Default Branch: master
  • Size: 10.7 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created almost 3 years ago · Last pushed almost 3 years ago
Metadata Files
Readme License

README.md

rpt

Latest Version API Documentation

This is a physically based, CPU-only rendering engine written in Rust. It uses path tracing to generate realistic images of 3D scenes.

Demo renders Demo video

Features

  • Simple declarative API, 100% Safe Rust
  • Supports .OBJ, .MTL, and .STL file formats
  • Uses unbiased path tracing for physically-based light transport
  • Uses a microfacet BSDF model with multiple importance sampling
  • Uses kd-trees to accelerate ray intersections
  • Supports direct light sampling and emissive materials
  • Supports HDRI environment maps
  • Supports depth of field
  • Supports iterative rendering, variance estimation, and firefly reduction
  • Supports physics simulation with numerical integrators and particle systems
  • Uses all CPU cores concurrently, scaling linearly up to 96 cores

Quickstart

First, clone the repository. The library containing path tracing code is located inside src/. Example code and scenes are located in examples/. To compile and run examples/basic.rs, use the command:

bash cargo run --example basic

To run tests, use:

bash cargo test

Library Usage

To use rpt as a library, add the following to your Cargo.toml:

toml [dependencies] rpt = "0.2"

Here's a simple scene that demonstrates the basics of the API.

```rust use rpt::*;

fn main() { let mut scene = Scene::new();

scene.add(Object::new(sphere())); // default red material
scene.add(
    Object::new(plane(glm::vec3(0.0, 1.0, 0.0), -1.0))
        .material(Material::diffuse(hex_color(0xAAAAAA))),
);
scene.add(Light::Object(
    Object::new(
        sphere()
            .scale(&glm::vec3(2.0, 2.0, 2.0))
            .translate(&glm::vec3(0.0, 12.0, 0.0)),
    )
    .material(Material::light(hex_color(0xFFFFFF), 40.0)),
));

let camera = Camera::look_at(
    glm::vec3(-2.5, 4.0, 6.5),
    glm::vec3(0.0, -0.25, 0.0),
    glm::vec3(0.0, 1.0, 0.0),
    std::f64::consts::FRAC_PI_4,
);

Renderer::new(&scene, camera)
    .width(960)
    .height(540)
    .max_bounces(2)
    .num_samples(100)
    .render()
    .save("output.png")
    .unwrap();

} ```

Example output

This code can also be found in examples/sphere.rs. Note that the shadow is correctly tinted red due to global illumination. See the detailed API documentation for information about all of the features, and feel free to learn from the other examples!

References

Samples

Dragon Cornell box Pegasus Lego plane Fractal spheres Rustacean Wine glass Spheres

Acknowledgements

This project was built by Eric Zhang and Alexander Morozov. We'd like to thank Justin Solomon, Yuanming Hu, Lingxiao Li, and Dmitriy Smirnov for teaching an excellent computer graphics class at MIT.

Some of the examples use free 3D models and image assets available on the Internet. Links are provided in comments in the source code, where used.

Owner

  • Name: ApacheCN 归档
  • Login: apachecn-archive
  • Kind: organization
  • Email: wizard.z@qq.com

防止重要项目丢失而设立的归档

GitHub Events

Total
Last Year

Dependencies

Cargo.toml cargo
  • color-eyre 0.5.10 development
  • tempfile 3.2.0 development
  • ureq 2.0.2 development
  • zip 0.5.10 development
  • glm 0.10.0
  • image 0.23.13
  • rand 0.8.3
  • rand_distr 0.4.0
  • rayon 1.5.0