v_sum#

static GeometryOperators.v_sum(a: list, b: list) list#

Evaluate two geometry vectors by adding them (a+b).

Parameters:
aList

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

bList

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

Returns:
List

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

Examples

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