S method

double S(
  1. double radians
)

Returns the sine of radians, shorthand for sin.

Implementation

double S(double radians) => sin(radians);