我正在用 HTML5 为我的画布处理一些坐标函数,我想制作一个可以按度移动对象的函数。
我的梦想是制作一个像这样工作的函数:
box.x=10;
box.y=10;
// now the box has the coordinates (10,10)
moveTheBoxWithThisAmountOfDistance=10;
degreesToMoveTheBox=90;
box.moveByDegrees(moveTheBoxWithThisAmountOfDistance,degreesToMoveTheBox);
// now the box.x would be 20 and box.y wouldn't be changed because
// we only move it to the right (directional 90 degrees)
我希望这有任何意义!
所以我的问题是:
当我必须将度数转换为坐标时,数学表达式如何?