//Here is my method that I have created.
//I want my radius1 to equal "7.07" but once I use the method it gives me zero
public double getCircumscribedCircleRadius()
   {
       radius1 = 1 / 2 * 10 * 1 / Math.sin( Math.PI / 4);
       return radius1;
   }
 
    