feat(nodes): add rotation to instance node
All checks were successful
🚀 Lint & Test & Deploy / release (pull_request) Successful in 4m9s
All checks were successful
🚀 Lint & Test & Deploy / release (pull_request) Successful in 4m9s
This commit is contained in:
@@ -28,6 +28,13 @@
|
|||||||
"value": 1,
|
"value": 1,
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
|
"rotation": {
|
||||||
|
"type": "float",
|
||||||
|
"min": 0,
|
||||||
|
"max": 1,
|
||||||
|
"value": 0.5,
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
"depth": {
|
"depth": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"min": 1,
|
"min": 1,
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
use glam::{Mat4, Quat, Vec3};
|
use glam::{Mat4, Quat, Vec3};
|
||||||
use nodarium_macros::nodarium_execute;
|
use nodarium_macros::{nodarium_execute, nodarium_definition_file};
|
||||||
use nodarium_macros::nodarium_definition_file;
|
|
||||||
use nodarium_utils::{
|
use nodarium_utils::{
|
||||||
concat_args, evaluate_float, evaluate_int,
|
concat_args, evaluate_float, evaluate_int,
|
||||||
geometry::{
|
geometry::{create_instance_data, wrap_geometry_data, wrap_instance_data, wrap_path},
|
||||||
create_instance_data, wrap_geometry_data, wrap_instance_data, wrap_path,
|
split_args,
|
||||||
},
|
|
||||||
log, split_args,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nodarium_definition_file!("src/input.json");
|
nodarium_definition_file!("src/input.json");
|
||||||
@@ -15,13 +12,13 @@ nodarium_definition_file!("src/input.json");
|
|||||||
pub fn execute(input: &[i32]) -> Vec<i32> {
|
pub fn execute(input: &[i32]) -> Vec<i32> {
|
||||||
let args = split_args(input);
|
let args = split_args(input);
|
||||||
let mut inputs = split_args(args[0]);
|
let mut inputs = split_args(args[0]);
|
||||||
log!("WASM(instance): inputs: {:?}", inputs);
|
|
||||||
|
|
||||||
let mut geo_data = args[1].to_vec();
|
let mut geo_data = args[1].to_vec();
|
||||||
let geo = wrap_geometry_data(&mut geo_data);
|
let geo = wrap_geometry_data(&mut geo_data);
|
||||||
|
|
||||||
let mut transforms: Vec<Mat4> = Vec::new();
|
let mut transforms: Vec<Mat4> = Vec::new();
|
||||||
|
|
||||||
|
// Find max depth
|
||||||
let mut max_depth = 0;
|
let mut max_depth = 0;
|
||||||
for path_data in inputs.iter() {
|
for path_data in inputs.iter() {
|
||||||
if path_data[2] != 0 {
|
if path_data[2] != 0 {
|
||||||
@@ -30,7 +27,8 @@ pub fn execute(input: &[i32]) -> Vec<i32> {
|
|||||||
max_depth = max_depth.max(path_data[3]);
|
max_depth = max_depth.max(path_data[3]);
|
||||||
}
|
}
|
||||||
|
|
||||||
let depth = evaluate_int(args[5]);
|
let rotation = evaluate_float(args[5]);
|
||||||
|
let depth = evaluate_int(args[6]);
|
||||||
|
|
||||||
for path_data in inputs.iter() {
|
for path_data in inputs.iter() {
|
||||||
if path_data[3] < (max_depth - depth + 1) {
|
if path_data[3] < (max_depth - depth + 1) {
|
||||||
@@ -38,24 +36,34 @@ pub fn execute(input: &[i32]) -> Vec<i32> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let amount = evaluate_int(args[2]);
|
let amount = evaluate_int(args[2]);
|
||||||
|
|
||||||
let lowest_instance = evaluate_float(args[3]);
|
let lowest_instance = evaluate_float(args[3]);
|
||||||
let highest_instance = evaluate_float(args[4]);
|
let highest_instance = evaluate_float(args[4]);
|
||||||
|
|
||||||
let path = wrap_path(path_data);
|
let path = wrap_path(path_data);
|
||||||
|
|
||||||
for i in 0..amount {
|
for i in 0..amount {
|
||||||
let alpha =
|
let alpha = lowest_instance
|
||||||
lowest_instance + (i as f32 / amount as f32) * (highest_instance - lowest_instance);
|
+ (i as f32 / (amount - 1) as f32) * (highest_instance - lowest_instance);
|
||||||
|
|
||||||
let point = path.get_point_at(alpha);
|
let point = path.get_point_at(alpha);
|
||||||
let direction = path.get_direction_at(alpha);
|
let tangent = path.get_direction_at(alpha);
|
||||||
|
let size = point[3] + 0.01;
|
||||||
|
|
||||||
|
let axis_rotation = Quat::from_axis_angle(
|
||||||
|
Vec3::from_slice(&tangent).normalize(),
|
||||||
|
i as f32 * rotation,
|
||||||
|
);
|
||||||
|
|
||||||
|
let path_rotation = Quat::from_rotation_arc(Vec3::Y, Vec3::from_slice(&tangent).normalize());
|
||||||
|
|
||||||
|
let rotation = path_rotation * axis_rotation;
|
||||||
|
|
||||||
let transform = Mat4::from_scale_rotation_translation(
|
let transform = Mat4::from_scale_rotation_translation(
|
||||||
Vec3::new(point[3], point[3], point[3]),
|
Vec3::new(size, size, size),
|
||||||
Quat::from_xyzw(direction[0], direction[1], direction[2], 1.0).normalize(),
|
rotation,
|
||||||
Vec3::from_slice(&point),
|
Vec3::from_slice(&point),
|
||||||
);
|
);
|
||||||
|
|
||||||
transforms.push(transform);
|
transforms.push(transform);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -67,11 +75,11 @@ pub fn execute(input: &[i32]) -> Vec<i32> {
|
|||||||
);
|
);
|
||||||
let mut instances = wrap_instance_data(&mut instance_data);
|
let mut instances = wrap_instance_data(&mut instance_data);
|
||||||
instances.set_geometry(geo);
|
instances.set_geometry(geo);
|
||||||
(0..transforms.len()).for_each(|i| {
|
|
||||||
instances.set_transformation_matrix(i, &transforms[i].to_cols_array());
|
|
||||||
});
|
|
||||||
|
|
||||||
log!("WASM(instance): geo: {:?}", instance_data);
|
for (i, transform) in transforms.iter().enumerate() {
|
||||||
|
instances.set_transformation_matrix(i, &transform.to_cols_array());
|
||||||
|
}
|
||||||
|
|
||||||
inputs.push(&instance_data);
|
inputs.push(&instance_data);
|
||||||
|
|
||||||
concat_args(inputs)
|
concat_args(inputs)
|
||||||
|
|||||||
Reference in New Issue
Block a user