get_triangle_area#
- static GeometryOperators.get_triangle_area(v1, v2, v3)[source]#
Evaluate the area of a triangle defined by its three vertices.
- Parameters:
- v1
List
List of
[x, y, z]
coordinates for the first vertex.- v2
List
List of
[x, y, z]
coordinates for the second vertex.- v3
List
List of
[x, y, z]
coordinates for the third vertex.
- v1
- Returns:
float
Area of the triangle.