参考:https://blog.csdn.net/faithmy509/article/details/80235631
Python:
pythonimport math
# 逆时针旋转angle
def rotate(angle, pointP, pointQ):
x2, y2 = pointQ # 旋转中心点
x1, y1 = pointP # 旋转前的点
x = x2 + (x1 - x2) * math.cos(angle) - (y1 - y2) * math.sin(angle)
y = y2 + (x1 - x2) * math.sin(angle) + (y1 - y2) * math.cos(angle)
return [x, y]
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!