En Sympy, la función is_tangent()
se usa para verificar si la línea dada es tangente al círculo dado o no.
Syntax: Circle().is_tangent(line)
Return: True:if line is tangent to circle, otherwise False.
Ejemplo 1:
# import sympy and geometry module from sympy import * from sympy.geometry import * x = Point(0, 0) # making line with given points l = Line(Point(5, -5), Point(5, 5)) # making circle with Circle() of # radius 5 and using is_tangent() isTangent = Circle(x, 5).is_tangent(l) print(isTangent)
Producción:
True
Ejemplo #2:
# import sympy and geometry module from sympy import * from sympy.geometry import * x = Point(0, 0) y = Point(1, 1) # making line with given points l = Line(x, y) # making circle with Circle() of radius 5 and using is_tangent() isTangent = Circle(x, 5).is_tangent(l) print(isTangent)
Producción:
False
Publicación traducida automáticamente
Artículo escrito por ravikishor y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA