在Sympy中,该函数
director_circle()
返回一个圆,该圆包含所有与椭圆垂直的两条切线彼此交叉的点。用法: Ellipse.director_circle() 返回: Circle A director circle returned as a geometric object.
范例1:
# import sympy and Circle, Ellipse, Point
from sympy import Circle, Ellipse, Point
p = Point(3, 8)
# using director_circle() method
directorCircle = Ellipse(p, 7, 9).director_circle()
print(directorCircle)
输出:
Circle(Point2D(3, 8), sqrt(130))
范例2:
# import sympy and Circle, Ellipse, Point, symbols
from sympy import Circle, Ellipse, Point, symbols
p = Point(3, 8)
a, b = symbols('a b')
# using director_circle() method
directorCircle = Ellipse(p, a, b).director_circle()
print(directorCircle)
输出:
Circle(Point2D(3, 8), sqrt(a**2 + b**2))
相关用法
- Python sympy.csc()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.has()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Ellipse.director_circle() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。