Python | Método Sympy Ellipse.is_tangent()

En Sympy, la función
Ellipse.is_tangent()
se utiliza para verificar si una Elipse, LinearEntity o Polygon es tangente a la Elipse dada o no.

Syntax: is_tangent(o)

Parameters: o  an Ellipse, LinearEntity or Polygon

Returns: True if o is tangent to the ellipse, False otherwise.

Raises: NotImplementedError When the wrong type of argument is supplied.

Ejemplo 1:

# import sympy and Point, Ellipse, Line
from sympy import Point, Ellipse, Line
  
p0, p1, p2 = Point(0, 0), Point(3, 0), Point(3, 3)
  
# using Line and Ellipse method
e1 = Ellipse(p0, 3, 2)
l1 = Line(p1, p2)
  
# using is_tangent method
e1.is_tangent(l1)

Producción:

True

Ejemplo #2:

# import sympy and Point, Ellipse, Line
from sympy import Point, Ellipse, Line
  
p0, p1, p2 = Point(0, 0), Point(4, 0), Point(4, 2)
  
# using Line and Ellipse method
e1 = Ellipse(p0, 3, 2)
l1 = Line(p1, p2)
  
# using is_tangent method
e1.is_tangent(l1)

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *