convertRadiusToSigma method

double convertRadiusToSigma(
  1. double radius
)

Converts a radius value to a sigma value.

Implementation

double convertRadiusToSigma(double radius) {
  return radius * 0.57735 + 0.5;
}