Merge branch 'master' of https://git.z.xinu.tv/wathiede/raytracers
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Bill Thiede 2019-11-24 08:33:07 -08:00
commit 0249ac6db9
7 changed files with 713 additions and 129 deletions

812
rtiow/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,6 +2,7 @@
members = [
"noise_explorer",
"noise_explorer_warp",
"renderer",
"tracer",
]

View File

@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
actix-web = "0.7.8"
askama = "0.7.1"
image = "0.19.0"
image = "0.22.3"
log = "0.4.5"
rand = "0.5.5"
renderer = { path = "../renderer" }

View File

@ -418,7 +418,6 @@ fn noise_marble(
np: Path<NoiseParamsMarble>,
optional: Option<Query<OptionalParams>>,
) -> Result<HttpResponse> {
info!("optional {:?}", optional);
noise(NoiseParams {
width: np.width,
height: np.height,

View File

@ -0,0 +1,19 @@
[package]
name = "noise_explorer_warp"
version = "0.1.0"
authors = ["Bill Thiede <git@xinu.tv>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = "0.7.1"
image = "0.22.3"
log = "0.4.5"
rand = "0.5.5"
renderer = { path = "../renderer" }
serde = "1.0.79"
serde_derive = "1.0.79"
stderrlog = "0.4.1"
structopt = "0.2.10"
warp = "0.1.20"

View File

@ -0,0 +1,5 @@
use warp;
fn main() {
println!("Hello, world!");
}

View File

@ -6,7 +6,7 @@
//! Print some human readable strings
//!
//! ```rust
//! use rtiow::human;
//! use renderer::human;
//!
//! // "1.00 k"
//! let tmpStr = human::Formatter::new()