v_dot#
- static GeometryOperators.v_dot(a: list, b: list) float#
Evaluate the dot product between two geometry vectors.
- Parameters:
- a
List List of
[x, y, z]coordinates for the first vector.- b
List List of
[x, y, z]coordinates for the second vector.
- a
- Returns:
floatResult 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])