fix(utils): make sure we do not build a .wasm file for utils
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 1m54s
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 1m54s
This commit is contained in:
@@ -2,15 +2,15 @@
|
|||||||
name = "nodarium_utils"
|
name = "nodarium_utils"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A collection of utilities for Nodarium"
|
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/jim-fx/nodes"
|
repository = "https://github.com/jim-fx/nodes"
|
||||||
|
description = "A collection of utilities for Nodarium"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["rlib"]
|
crate-type = ["rlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
||||||
glam = "0.30.10"
|
glam = "0.30.10"
|
||||||
noise = "0.9.0"
|
noise = "0.9.0"
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
||||||
|
|||||||
@@ -33,3 +33,19 @@ macro_rules! log {
|
|||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
|
#[rustfmt::skip]
|
||||||
|
fn test_split_args(){
|
||||||
|
let inputs = vec![
|
||||||
|
vec![0, 1, 0, 4, 1056964608, 1065353216, 1056964608, 1, 4, 1080872141, 1054951342, 32, 1, 1 ],
|
||||||
|
vec![0, 4, 1056964608, 1065353216, 1056964608, 1, 4],
|
||||||
|
vec![0, 1, 0, 3, 0, 0, 0, 5, 0, 0, 1073741824, 1073741824, 1, 1, 1, 1, 1, 4, 1065353216, 1054615798, 5, 1, 1 ],
|
||||||
|
vec![ 0, 1, 0, 3, 0, 0, 0, 1, 4, 1073741824, 1073741824, 32, 1, 1 ],
|
||||||
|
vec![0, 1, 0, 1, 0, 14, 0, 1056964608, 1056964608, 1056964608, 1058810102, 1056964608, 1069547520, 1056964608, 1050421494, 1056964608, 1075838976, 1056964608, 0, 1, 1, 1, 2, 13, 1, 1],
|
||||||
|
vec![ 0, 1, 0, 2, 0, 0, 5, 0, 0, 1073741824, 1073741824, 1, 2, 0, 1, 4, 1088212173, 1083388723, 20, 1, 1 ]
|
||||||
|
];
|
||||||
|
|
||||||
|
for input in inputs {
|
||||||
|
println!("RESULT: {:?}", split_args(&input));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
use nodarium_utils::{
|
|
||||||
geometry::{create_multiple_paths, wrap_multiple_paths},
|
|
||||||
split_args,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
#[rustfmt::skip]
|
|
||||||
fn test_split_args(){
|
|
||||||
let inputs = vec![
|
|
||||||
vec![0, 1, 0, 4, 1056964608, 1065353216, 1056964608, 1, 4, 1080872141, 1054951342, 32, 1, 1 ],
|
|
||||||
vec![0, 4, 1056964608, 1065353216, 1056964608, 1, 4],
|
|
||||||
vec![0, 1, 0, 3, 0, 0, 0, 5, 0, 0, 1073741824, 1073741824, 1, 1, 1, 1, 1, 4, 1065353216, 1054615798, 5, 1, 1 ],
|
|
||||||
vec![ 0, 1, 0, 3, 0, 0, 0, 1, 4, 1073741824, 1073741824, 32, 1, 1 ],
|
|
||||||
vec![0, 1, 0, 1, 0, 14, 0, 1056964608, 1056964608, 1056964608, 1058810102, 1056964608, 1069547520, 1056964608, 1050421494, 1056964608, 1075838976, 1056964608, 0, 1, 1, 1, 2, 13, 1, 1],
|
|
||||||
vec![ 0, 1, 0, 2, 0, 0, 5, 0, 0, 1073741824, 1073741824, 1, 2, 0, 1, 4, 1088212173, 1083388723, 20, 1, 1 ]
|
|
||||||
];
|
|
||||||
|
|
||||||
for input in inputs {
|
|
||||||
println!("RESULT: {:?}", split_args(&input));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn test_path() {
|
|
||||||
// let path_data = create_path(3, 2);
|
|
||||||
// println!("{:?}", path_data);
|
|
||||||
|
|
||||||
let mut multiple_paths = create_multiple_paths(1, 4, 1);
|
|
||||||
let mut wrapped_paths = wrap_multiple_paths(&mut multiple_paths);
|
|
||||||
wrapped_paths[0].points[0] = 1.0;
|
|
||||||
println!("{:?}", wrapped_paths);
|
|
||||||
println!("{:?}", multiple_paths);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
test_path()
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user