Function sin [src]

Sine trigonometric function on a floating point number. Uses a dedicated hardware instruction when available. This is the same as calling the builtin @sin

Prototype

pub inline fn sin(value: anytype) @TypeOf(value)

Source

pub inline fn sin(value: anytype) @TypeOf(value) { return @sin(value); }