summaryrefslogtreecommitdiff
path: root/src/math.rs
blob: 6766a60569dbdf51d3700ce95f663c5b807b13cb (plain)
1
2
3
pub fn distance(l0 : (f64, f64, f64), l1 : (f64, f64, f64)) -> f64 {
    (((l1.0-l0.0).powf(2.0) + (l1.1-l0.1).powf(2.0) + (l1.2-l0.2).powf(2.0))).sqrt()
}