damn. really nice finish animation now, albeit a bit of a tangent

This commit is contained in:
Peter Cottle 2012-12-19 13:07:02 -08:00
parent ebaae41a38
commit 029456e3d8
5 changed files with 208 additions and 46 deletions

View file

@ -391,7 +391,7 @@ var VisNode = VisBase.extend({
cy: y
});
// continuation calculation
return (vx * vx + vy * vy > 0.01) ? true : false;
return ((vx * vx + vy * vy) > 0.01) ? true : false;
};
return stepFunc;
},