radToDeg static method

double radToDeg(
  1. double val
)

Implementation

static double radToDeg(double val){
  return val*(180.0 / math.pi);
}