Update name of variable

This commit is contained in:
Hanno Braun 2025-04-22 12:37:11 +02:00
parent a692daf053
commit c1b5ee5de4

View File

@ -69,8 +69,8 @@ impl Sketch {
let a = start_to_end.magnitude() / 2.;
let c = radius;
let distance_square = c * c - a * a;
distance_square.sqrt()
let b_squared = c * c - a * a;
b_squared.sqrt()
};
let center = midpoint