Initial commit

This commit is contained in:
2026-02-23 08:51:37 -05:00
commit 757a132930
25 changed files with 1780 additions and 0 deletions

6
physics.aura Normal file
View File

@@ -0,0 +1,6 @@
type PositiveTime = f32{t | t > 0.0}
pure fn calculate_new_position(initial_x: f32, v: f32, dt: PositiveTime) -> f32:
let displacement = v * dt
let new_x = initial_x + displacement
return new_x