ascend + basic auto landing + misc

This commit is contained in:
2026-04-18 23:19:23 -04:00
parent 8a0700c36a
commit 9a4ae5e472
17 changed files with 504 additions and 7 deletions
+22 -1
View File
@@ -27,4 +27,25 @@ declare function ApproximateExp {
SET result TO result + (xPower / nFact).
}
RETURN result.
}
}
declare function EaseOutExpo {
parameter x.
parameter p is 10.
if x = 1 {
return 1.
} else{
return 1 - (2 ^ (-p * x)).
}
}
declare function EaseOutCirc{
parameter x.
return sqrt(1 - (x - 1)^2).
}
declare function EaseOutExp{
parameter x.
parameter n is 2.0.
return x ^ (2.0 * n).
}