Arc length from given Angle?


Here we will see how to get the arc length from the given angle. One circle is given. The radius of the circle is given. Our task is to get the arc length using the radius and the angle. The angle is in degree.

Here r and x is given. We have to find the value of L. The formula is like below −

𝐿 = 2𝜋𝑟 ∗ (𝑥/360)

Example

#include <iostream>
using namespace std;
float getArcLength(float r, float x){
   return (2 * 3.1415f * r) * (x / 360.0f);
}
int main() {
   float rad = 12.0f;
   float angle = 45.0f;
   cout << "Arc Length: " << getArcLength(rad, angle);
}

Output

Arc Length: 9.4245

Updated on: 31-Jul-2019

107 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements