From: <no...@so...> - 2001-02-04 23:08:23
|
Bug #131034, was updated on 2001-Feb-04 15:08 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Browser-Specific Issue Status: Open Resolution: None Bug Group: None Priority: 5 Submitted by: robelix Assigned to : nobody Summary: Mozilla - Math.pow Details: Mozilla M18 seems to have a broken Math.pow this causes PathAnimation.line to return only beginning and end-position fix: replace in pathanim.js line 125 var N = Math.floor(Math.sqrt(Math.pow(distx,2) + Math.pow(disty,2))/inc); with var N = Math.floor(Math.sqrt(distx*distx + disty*disty)/inc); For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=131034&group_id=5757 |