v_angle#
- static GeometryOperators.v_angle(a: list, b: list) float#
Evaluate the angle 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:
floatAngle in radians.
Examples
>>> from ansys.aedt.core.modeler.geometry_operators import GeometryOperators >>> obj = GeometryOperators() >>> obj.v_angle(a=[1, 0, 0], b=[0, 1, 0])