Initial commit

This commit is contained in:
redclawsystems
2026-03-04 00:08:42 +00:00
commit 4d88dc0584
4449 changed files with 1556714 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//! Digital Twin Demo - Medical Digital Twin Platform.
//!
//! This crate provides the demo backend for the Medical Digital Twin demonstration,
//! showing patient-specific organ simulation for thermal therapy planning.
#![forbid(unsafe_code)]
#![warn(missing_docs)]
pub mod presets;
pub mod simulation;
pub use presets::GeometryPresets;
pub use rtx_digital_twin_shared::*;
pub use simulation::TwinSimulator;