v_norm#
- static GeometryOperators.v_norm(a: list) float#
Evaluate the Euclidean norm of a geometry vector.
- Parameters:
- a
List - List of ``[x, y, z]`` coordinates for the vector.
- a
- Returns:
floatEvaluated 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])