UNPKG

vislite

Version:

灵活、快速、简单的数据可视化交互式跨端前端库

14 lines (12 loc) 288 B
/*! * move of VISLite JavaScript Library v1.3.0 * git+https://github.com/oi-contrib/VISLite.git */ function move (ax, ay, d, x, y) { var sqrt = Math.sqrt(ax * ax + ay * ay); return [ ax * d / sqrt + x, ay * d / sqrt + y ]; } export { move as default };