summaryrefslogtreecommitdiff
path: root/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'math.c')
-rw-r--r--math.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/math.c b/math.c
index 78a6615e7f..4356a346b0 100644
--- a/math.c
+++ b/math.c
@@ -108,14 +108,18 @@ Fmath_sqrt(obj, x)
Init_Math()
{
M_Math = rb_define_module("Math");
-
- rb_define_module_function(M_Math, "atan2", Fmath_atan2, 2);
- rb_define_module_function(M_Math, "cos", Fmath_cos, 1);
- rb_define_module_function(M_Math, "sin", Fmath_sin, 1);
- rb_define_module_function(M_Math, "tan", Fmath_tan, 1);
-
- rb_define_module_function(M_Math, "exp", Fmath_exp, 1);
- rb_define_module_function(M_Math, "log", Fmath_log, 1);
- rb_define_module_function(M_Math, "log10", Fmath_log10, 1);
- rb_define_module_function(M_Math, "sqrt", Fmath_sqrt, 1);
+ rb_extend_object(M_Math, M_Math);
+
+ rb_define_const(M_Math, "PI", float_new(M_PI));
+ rb_define_const(M_Math, "E", float_new(M_E));
+
+ rb_define_method(M_Math, "atan2", Fmath_atan2, 2);
+ rb_define_method(M_Math, "cos", Fmath_cos, 1);
+ rb_define_method(M_Math, "sin", Fmath_sin, 1);
+ rb_define_method(M_Math, "tan", Fmath_tan, 1);
+
+ rb_define_method(M_Math, "exp", Fmath_exp, 1);
+ rb_define_method(M_Math, "log", Fmath_log, 1);
+ rb_define_method(M_Math, "log10", Fmath_log10, 1);
+ rb_define_method(M_Math, "sqrt", Fmath_sqrt, 1);
}