In my app I\'m using UIBezierPath to draw an arc into a circle. I\'m trying to correlate a number to radians. So let\'s say a user has a certain number of points, and the po
CGFloat radians = percent * 0.01 * 2 * M_PI;
Simple algebra.