arc length id fix

This commit is contained in:
lukew3
2020-10-26 13:17:47 -04:00
parent cda92b69c5
commit 55a9358929
3 changed files with 112 additions and 111 deletions

View File

@@ -11,4 +11,5 @@ def arclengthFunc(maxRadius=49, maxAngle=359):
return problem, solution
arc_length = Generator("Arc length of Angle", 106, " Given the radius, r and angle, ang. Calculate the arc length of the given angle", "(ang/360) * 2 * pi * r", arclengthFunc)
arc_length = Generator("Arc length of Angle", 108,
" Given the radius, r and angle, ang. Calculate the arc length of the given angle", "(ang/360) * 2 * pi * r", arclengthFunc)