diff options
| author | Steve Zesch <[email protected]> | 2012-11-24 20:49:56 -0500 | 
|---|---|---|
| committer | Steve Zesch <[email protected]> | 2012-11-24 20:49:56 -0500 | 
| commit | f2afbc975e249e765ee7d7452165912f1b4b479b (patch) | |
| tree | 9a1a314592ba4a10b38bd298ebeb91e33919d428 /src | |
| parent | 12d89a4ee8424f13f5be22779bd4ed6c4516c6d2 (diff) | |
| download | mate-calc-f2afbc975e249e765ee7d7452165912f1b4b479b.tar.bz2 mate-calc-f2afbc975e249e765ee7d7452165912f1b4b479b.tar.xz  | |
Added inverse trig functions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/math-buttons.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/src/math-buttons.c b/src/math-buttons.c index cd28ee7..a64c27f 100644 --- a/src/math-buttons.c +++ b/src/math-buttons.c @@ -175,6 +175,15 @@ static ButtonData button_data[] = {      {"hyperbolic_tangent", "tanh ", FUNCTION,        /* Tooltip for the hyperbolic tangent button */        N_("Hyperbolic Tangent")}, +    {"inverse_sine", "asin", FUNCTION, +      /* Tooltip for the inverse sine button */ +      N_("Inverse Sine")}, +    {"inverse_cosine", "acos", FUNCTION, +      /* Tooltip for the inverse cosine button */ +      N_("Inverse Cosine")}, +    {"inverse_tangent", "atan", FUNCTION, +      /* Tooltip for the inverse tangent button */ +      N_("Inverse Tangent")},      {"inverse",            "⁻¹", FUNCTION,        /* Tooltip for the inverse button */        N_("Inverse [Ctrl+I]")},  | 
