get_triangle_area#

static GeometryOperators.get_triangle_area(v1: list, v2: list, v3: list) float#

Evaluate the area of a triangle defined by its three vertices.

Parameters:
v1List

List of [x, y, z] coordinates for the first vertex.

v2List

List of [x, y, z] coordinates for the second vertex.

v3List

List of [x, y, z] coordinates for the third vertex.

Returns:
float

Area of the triangle.