dyna3/app-proto/sketch-outline/src/main.rs

51 lines
1.5 KiB
Rust
Raw Normal View History

2024-09-13 00:40:34 -07:00
mod assembly;
2024-09-13 14:53:12 -07:00
mod display;
mod outline;
2024-09-13 00:40:34 -07:00
use nalgebra::DVector;
2024-09-13 00:40:34 -07:00
use sycamore::prelude::*;
use assembly::{Assembly, Element};
2024-09-13 14:53:12 -07:00
use display::Display;
use outline::Outline;
#[derive(Clone)]
struct AppState {
assembly: Assembly
}
fn main() {
sycamore::render(|| {
provide_context(
AppState {
assembly: Assembly {
elements: create_signal(vec![
Element {
id: String::from("wing_a"),
label: String::from("Wing A"),
color: [1.00_f32, 0.25_f32, 0.00_f32],
rep: DVector::<f64>::from_column_slice(&[0.5, 0.5, 0.0, 0.5, -0.25])
},
Element {
id: String::from("wing_b"),
label: String::from("Wing B"),
2024-09-14 11:46:24 -07:00
color: [0.00_f32, 0.25_f32, 1.00_f32],
rep: DVector::<f64>::from_column_slice(&[-0.5, -0.5, 0.0, 0.5, -0.25])
},
Element {
id: String::from("central"),
label: String::from("Central"),
color: [0.75_f32, 0.75_f32, 0.75_f32],
rep: DVector::<f64>::from_column_slice(&[0.0, 0.0, 0.0, 0.4, -0.625])
}
])
}
}
);
view! {
Outline {}
2024-09-13 14:53:12 -07:00
Display {}
}
});
}