La función
Triangle()
toma los puntos dados como vértices de un triángulo y calcula el área del triángulo con la ayuda de área.
Syntax: Triangle(x, y, z).area Parameters: where x, y, z are coordinates. Return: Area of triangle.
Ejemplo 1:
Python3
# import sympy and geometry module from sympy import * from sympy.geometry import * x = Point(0, 0) y = Point(1, 1) z = Point(1, 0) # Using Triangle(x, y, z).area giveArea = Triangle(x, y, z).area print(giveArea)
Producción:
1/2
Ejemplo #2:
Python3
# import sympy and geometry module from sympy import * from sympy.geometry import * x = Point(1, 2) y = Point(2, 0) z = Point(1, 0) # Using Triangle(x, y, z).area giveArea = Triangle(x, y, z).area print(giveArea)
Producción:
1
Publicación traducida automáticamente
Artículo escrito por ravikishor y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA