Python Sympy Ellipse.rotate()方法
在Sympy中,函数rotate()是用来将椭圆围绕给定的点逆时针旋转给定角度的。
语法: Ellipse.rotate(angle=0, pt=None)
参数:
angle: 弧度
pt: 椭圆被逆时针旋转的点。
返回: 旋转的椭圆。
示例 #1:
# import sympy and pi, Ellipse
from sympy import Ellipse, pi
# using Ellipse() method
e1 = Ellipse((1, 0), 2, 1)
# using rotate() method
e1.rotate(pi / 2)
print(e1)
输出:
Ellipse(Point2D(0, 1), 1, 2)
示例 #2:
# import sympy and pi, Ellipse
from sympy import Ellipse, pi
# using Ellipse() method
e2 = Ellipse((1, 0), 2, 1)
# using rotate() with given point method
e2.rotate(pi / 2, (1, 2))
print(e2)
输出:
Ellipse(Point2D(3, 2), 1, 2)