En Sympy, la función
is_perpendicular()
se utiliza para comprobar si las dos entidades lineales son perpendiculares o no.
Syntax: Line.is_perpendicular(l2) Parameters: l1: LinearEntity l2: LinearEntity Returns: True: if l1 and l2 are perpendicular, False: otherwise.
Ejemplo 1:
# import sympy and Point, Line from sympy import Point, Line p1, p2, p3 = Point(0, 0), Point(1, 1), Point(-1, 1) l1, l2 = Line(p1, p2), Line(p1, p3) # using is_perpendicular() method isPerpendicular = l1.is_perpendicular(l2) print(isPerpendicular)
Producción:
True
Ejemplo #2:
# import sympy and Point, Line from sympy import Point, Line p1, p2, p3 = Point(0, 0), Point(1, 1), Point(5, 3) l1, l2 = Line(p1, p2), Line(p1, p3) # using is_perpendicular() method isPerpendicular = l1.is_perpendicular(l2) print(isPerpendicular)
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