diff options
author | eug-vs <eugene@eug-vs.xyz> | 2025-01-31 03:29:03 +0100 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2025-01-31 03:30:03 +0100 |
commit | aa0385d7fc7639b748965f8c029fa1e46d218c0e (patch) | |
tree | 211f7cad878c2848a412dbea3e5f7a165b4a12ad /physics | |
parent | 87f4cefcf7cd72357b4f47d409942e27c5e2f689 (diff) | |
download | particle-physics-master.tar.gz |
Diffstat (limited to 'physics')
-rw-r--r-- | physics/src/constraint/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/physics/src/constraint/mod.rs b/physics/src/constraint/mod.rs index 4df1c8e..ed9e603 100644 --- a/physics/src/constraint/mod.rs +++ b/physics/src/constraint/mod.rs @@ -4,7 +4,6 @@ use crate::algebra::{Scalar, N}; use crate::particle_system::ParticleSystem; pub mod beam; pub mod slider; -pub mod subspace_distance; pub const SPRING_CONSTANT: Scalar = 16.0; pub const DAMPING_CONSTANT: Scalar = 4.0; |