= private = protected
sin(p1)
Computes the sine of x (expressed in radians). Returns -1..1.
static VALUE math_sin(VALUE obj, VALUE x) { Need_Float(x); return DBL2NUM(sin(RFLOAT_VALUE(x))); }