summaryrefslogtreecommitdiff
path: root/src/lsq_funcs.mac
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-13 16:04:50 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-13 16:04:50 +0100
commite619c42079a7da741b4a1b5032a0e1d30ba3b0a1 (patch)
treedd24fb6fd8ab9307e95f80fb1ec4d2683072e873 /src/lsq_funcs.mac
parent331c46f2865146f5221358b6849e1057677f33e8 (diff)
make generated functions static
Diffstat (limited to 'src/lsq_funcs.mac')
-rw-r--r--src/lsq_funcs.mac7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lsq_funcs.mac b/src/lsq_funcs.mac
index d5f412e..cf86d7e 100644
--- a/src/lsq_funcs.mac
+++ b/src/lsq_funcs.mac
@@ -6,8 +6,8 @@ x_undist_unrot : tan(m_view - c_view) * scale$
y_undist_unrot : tan(m_nick - c_nick) * scale$
d : y_undist_unrot ^ 2 + x_undist_unrot ^ 2$
dist_fact : d ^2 * k1 + d * k0$
-x_unrot : x_undist_unrot * dist_fact$
-y_unrot : y_undist_unrot * dist_fact$
+x_unrot : x_undist_unrot * (1 + dist_fact)$
+y_unrot : y_undist_unrot * (1 + dist_fact)$
x : y_unrot * sin(c_tilt) + x_unrot * cos(c_tilt)$
y : y_unrot * cos(c_tilt) - x_unrot * sin(c_tilt)$
@@ -19,7 +19,8 @@ x_expand : trigexpand(x_unrot)$
y_expand : trigexpand(y_unrot)$
args: "(double c_view, double c_nick, double c_tilt, double scale, double k0, double k1, double m_view, double m_nick)"$
-printfunc(name, expression) := sprint("double", name, args, "{ return ", string(subst(pow, "^", expression)), ";}", "
+
+printfunc(name, expression) := sprint("static double", name, args, "{ return ", string(subst(pow, "^", expression)), ";}", "
")$
printfunc("mac_x", x_expand);