remove git diff and hypot

This commit is contained in:
kralverde
2024-10-03 16:32:06 -04:00
parent c17b1002d8
commit 90c19ae744
2 changed files with 0 additions and 9 deletions

View File

@@ -30,11 +30,3 @@ pub fn magnitude(a: f64, b: f64, c: f64) -> f64 {
pub const fn get_section_cord(coord: i32) -> i32 {
coord >> 4
}
pub fn squared_hypot(a: f64, b: f64) -> f64 {
a * a + b * b
}
pub fn hypot(a: f64, b: f64) -> f64 {
squared_hypot(a, b).sqrt()
}

View File

@@ -1,4 +1,3 @@
<<<<<<< HEAD
use std::collections::HashMap;
use thiserror::Error;