From ae52db78e5b6697562f0e7b0e1f92dec94c1b063 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sun, 23 Oct 2005 17:47:18 +0000 Subject: Fixed bug in lookup table --- algorithm.mod/algorithm.bmx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algorithm.mod/algorithm.bmx b/algorithm.mod/algorithm.bmx index 7020c25..9828362 100644 --- a/algorithm.mod/algorithm.bmx +++ b/algorithm.mod/algorithm.bmx @@ -289,8 +289,8 @@ Type AlgoStatic co=New Double[3600] For Local f:Int=0 To 3599 - si[f]=Sin(f) - co[f]=Cos(f) + si[f]=Sin(Double(f)/10) + co[f]=Cos(Double(f)/10) Next done=True -- cgit v1.2.3