From 7cc3ccd03e739ce14962808ec0795fb071a86983 Mon Sep 17 00:00:00 2001 From: ronaldhordijk Date: Sun, 23 Oct 2005 07:41:19 +0000 Subject: [PATCH] fixed formula --- 2.10/Source/varFan2.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2.10/Source/varFan2.pas b/2.10/Source/varFan2.pas index 2443c63..b365408 100644 --- a/2.10/Source/varFan2.pas +++ b/2.10/Source/varFan2.pas @@ -57,8 +57,8 @@ begin else a := Angle + dx2; - FPx^ := FPx^ + vvar * r * sin(Angle); - FPy^ := FPy^ + vvar * r * cos(Angle); + FPx^ := FPx^ + vvar * r * sin(a); + FPy^ := FPy^ + vvar * r * cos(a); end; ///////////////////////////////////////////////////////////////////////////////