没有搞懂。
import math def move(x, y, step, angle): nx = x + step * math.cos(angle) ny = y - step * math.sin(angle) return nx, ny
>>> x, y = move(100, 100, 60, math.pi / 6) >>> print x, y
怎么就突然出现了100.60呢?还有这个在写什么完全不懂?
import math def move(x, y, step, angle): nx = x + step * math.cos(angle) ny = y - step * math.sin(angle) return nx, ny
>>> x, y = move(100, 100, 60, math.pi / 6) >>> print x, y
怎么就突然出现了100.60呢?还有这个在写什么完全不懂?
2018-06-17
举报