summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2012-11-16 14:44:42 -0500
committerSteve Zesch <[email protected]>2012-11-16 14:44:42 -0500
commit1cfad684d98f3f9648069f093b761f1885cefd7d (patch)
treed59ca81a6762dbea6d527d9c0bd1d2b03392d0a3 /src
parentfa82b016b8d3b5c63ad5f1af8f021a341d7e3560 (diff)
downloadmate-calc-1cfad684d98f3f9648069f093b761f1885cefd7d.tar.bz2
mate-calc-1cfad684d98f3f9648069f093b761f1885cefd7d.tar.xz
Added buttons for inverse trig functions.
Diffstat (limited to 'src')
-rw-r--r--src/math-buttons.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/math-buttons.c b/src/math-buttons.c
index 3c71ed3..d33422b 100644
--- a/src/math-buttons.c
+++ b/src/math-buttons.c
@@ -178,6 +178,15 @@ static ButtonData button_data[] = {
{"tangent", "tan ", FUNCTION,
/* Tooltip for the tangent button */
N_("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")},
{"hyperbolic_sine", "sinh ", FUNCTION,
/* Tooltip for the hyperbolic sine button */
N_("Hyperbolic Sine")},