Implement time stepping of both the B and E field

This commit is contained in:
2020-07-12 20:50:58 -07:00
parent 5e237800b4
commit ccd7b45fc8
2 changed files with 103 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
use coremem::SimState;
fn main() {
println!("loaded");
let mut state = SimState::default();
state.step();
}