Merge branch 'master' of https://git.z.xinu.tv/wathiede/raytracers
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
commit
0249ac6db9
812
rtiow/Cargo.lock
generated
812
rtiow/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
members = [
|
members = [
|
||||||
"noise_explorer",
|
"noise_explorer",
|
||||||
|
"noise_explorer_warp",
|
||||||
"renderer",
|
"renderer",
|
||||||
"tracer",
|
"tracer",
|
||||||
]
|
]
|
||||||
|
|||||||
@ -9,7 +9,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "0.7.8"
|
actix-web = "0.7.8"
|
||||||
askama = "0.7.1"
|
askama = "0.7.1"
|
||||||
image = "0.19.0"
|
image = "0.22.3"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
rand = "0.5.5"
|
rand = "0.5.5"
|
||||||
renderer = { path = "../renderer" }
|
renderer = { path = "../renderer" }
|
||||||
|
|||||||
@ -418,7 +418,6 @@ fn noise_marble(
|
|||||||
np: Path<NoiseParamsMarble>,
|
np: Path<NoiseParamsMarble>,
|
||||||
optional: Option<Query<OptionalParams>>,
|
optional: Option<Query<OptionalParams>>,
|
||||||
) -> Result<HttpResponse> {
|
) -> Result<HttpResponse> {
|
||||||
info!("optional {:?}", optional);
|
|
||||||
noise(NoiseParams {
|
noise(NoiseParams {
|
||||||
width: np.width,
|
width: np.width,
|
||||||
height: np.height,
|
height: np.height,
|
||||||
|
|||||||
19
rtiow/noise_explorer_warp/Cargo.toml
Normal file
19
rtiow/noise_explorer_warp/Cargo.toml
Normal 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"
|
||||||
5
rtiow/noise_explorer_warp/src/main.rs
Normal file
5
rtiow/noise_explorer_warp/src/main.rs
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
use warp;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
||||||
@ -6,7 +6,7 @@
|
|||||||
//! Print some human readable strings
|
//! Print some human readable strings
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
//! use rtiow::human;
|
//! use renderer::human;
|
||||||
//!
|
//!
|
||||||
//! // "1.00 k"
|
//! // "1.00 k"
|
||||||
//! let tmpStr = human::Formatter::new()
|
//! let tmpStr = human::Formatter::new()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user