|
From: <kin...@us...> - 2003-11-29 08:16:44
|
Update of /cvsroot/teem/teem/src/limn
In directory sc8-pr-cvs1:/tmp/cvs-serv5720/limn
Modified Files:
shapes.c
Log Message:
bug in Y-axis-aligned limnObjPolarSuperquadAdd
Index: shapes.c
===================================================================
RCS file: /cvsroot/teem/teem/src/limn/shapes.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** shapes.c 6 Oct 2003 11:14:57 -0000 1.13
--- shapes.c 29 Nov 2003 08:16:41 -0000 1.14
***************
*** 290,295 ****
break;
case 1:
! x = airSgnPow(cos(p),B);
! y = airSgnPow(sin(t),A) * airSgnPow(sin(p),B);
z = airSgnPow(cos(t),A) * airSgnPow(sin(p),B);
break;
--- 290,295 ----
break;
case 1:
! x = airSgnPow(sin(t),A) * airSgnPow(sin(p),B);
! y = airSgnPow(cos(p),B);
z = airSgnPow(cos(t),A) * airSgnPow(sin(p),B);
break;
|