v_dot#

static GeometryOperators.v_dot(a: list, b: list) float#

Evaluate the dot product between two geometry vectors.

Parameters:
aList

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

bList

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

Returns:
float

Result of the dot product.

Examples

>>> from ansys.aedt.core.modeler.geometry_operators import GeometryOperators
>>> obj = GeometryOperators()
>>> obj.v_dot(a=[1, 0, 0], b=[0, 1, 0])