aboutsummaryrefslogtreecommitdiff
path: root/src/tab_carth2polar.c
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2012-09-07 11:20:12 +0000
committermusil <tmusil@users.sourceforge.net>2012-09-07 11:20:12 +0000
commitef9d844916bf70100b21e42bb3218dbeb938e333 (patch)
treefa00272a2d7874dd1998b56f1fcc7471b5a098fb /src/tab_carth2polar.c
parent24748de4217b92fbfa09ede5413de7aa0ea16f3a (diff)
changed 0.0f to 0.0
svn path=/trunk/externals/iem/iem_tab/; revision=16200
Diffstat (limited to 'src/tab_carth2polar.c')
-rw-r--r--src/tab_carth2polar.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tab_carth2polar.c b/src/tab_carth2polar.c
index 9dccd68..bc450ff 100644
--- a/src/tab_carth2polar.c
+++ b/src/tab_carth2polar.c
@@ -86,7 +86,7 @@ static void tab_carth2polar_bang(t_tab_carth2polar *x)
if(n)
{
t_garray *a;
- t_float rcp_two_pi=0.125f/atan(1.0);
+ t_float rcp_two_pi=0.125/atan(1.0);
for(i=0; i<n; i++)
{
@@ -156,7 +156,7 @@ static void tab_carth2polar_list(t_tab_carth2polar *x, t_symbol *s, int argc, t_
if(n)
{
t_garray *a;
- t_float rcp_two_pi=0.125f/atan(1.0);
+ t_float rcp_two_pi=0.125/atan(1.0);
for(i=0; i<n; i++)
{
@@ -231,5 +231,4 @@ void tab_carth2polar_setup(void)
class_addmethod(tab_carth2polar_class, (t_method)tab_carth2polar_src_im, gensym("src1_im"), A_DEFSYMBOL, 0);
class_addmethod(tab_carth2polar_class, (t_method)tab_carth2polar_dst_mag, gensym("dst_mag"), A_DEFSYMBOL, 0);
class_addmethod(tab_carth2polar_class, (t_method)tab_carth2polar_dst_arg, gensym("dst_arg"), A_DEFSYMBOL, 0);
-// class_sethelpsymbol(tab_carth2polar_class, gensym("iemhelp2/help-tab_carth2polar"));
}