sincosf
Description:
[ CCode ( feature_test_macro = "_GNU_SOURCE" ) ]
public void sincosf (float x, out float sinx, out float cosx)
public void sincosf (float x, out float sinx, out float cosx)
Computes both sine and cosine of x
at the same time.
Note:
Remember to link the math library: valac -X -lm ...
Several applications need sine and cosine of the same angle x
. This function computes both at the same time, and stores the
results via the output variables.
Parameters:
x |
A numeric value in radians. |
sinx |
Output variable for sine of |
cosx |
Output variable for cosine of |
Namespace: GLib.Math
Package: glib-2.0