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: Closed
Resolution: Fixed
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);
Follow-Ups:
Date: 2001-Feb-09 07:41
By: dcpascal
Comment:
included the fix.. thnx
-------------------------------------------------------
For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=131034&group_id=5757
|