v_norm#

static GeometryOperators.v_norm(a: Sequence[float]) float#

Evaluate the Euclidean norm of a geometry vector.

Parameters:
aSequence[float]
List of ``[x, y, z]`` coordinates for the vector.
Returns:
float

Evaluated norm in the same unit as the coordinates for the input vector.

Examples

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