comment out stadion

This commit is contained in:
Alain Zscheile 2024-01-05 21:19:32 +01:00
parent 996daaadd8
commit ebfd39751e

View file

@ -103,6 +103,7 @@ pub fn intersect_8pp(t: f64) -> [f64; 2] {
}
// doesn't work yet...
/*
pub fn stadion(t: f64, gap: f64) -> [f64; 2] {
// circle1 : 1/8..3/8
// circle2 : 5/8..7/8
@ -120,6 +121,7 @@ pub fn stadion(t: f64, gap: f64) -> [f64; 2] {
[1.0, (t - 1.0) * 4.0 * gap - 1.0]
}
}
*/
pub fn square(t: f64) -> [f64; 2] {
let t4 = t * 4.0;