Skip to content
Snippets Groups Projects
Commit 47a0088a authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Transform veclength/normalise functions can do multiple vectors at once

parent 156454ec
No related branches found
No related tags found
No related merge requests found
...@@ -55,13 +55,26 @@ def concat(*xforms): ...@@ -55,13 +55,26 @@ def concat(*xforms):
def veclength(vec): def veclength(vec):
"""Returns the length of the given vector. """ """Returns the length of the given vector(s).
return np.sqrt(np.dot(vec, vec))
Multiple vectors may be passed in, with a shape of ``(n, 3)``.
"""
vec = np.array(vec, copy=False).reshape(-1, 3)
return np.sqrt(np.einsum('ij,ij->i', vec, vec))
def normalise(vec): def normalise(vec):
"""Normalises the given vector to unit length. """ """Normalises the given vector(s) to unit length.
return vec / veclength(vec)
Multiple vectors may be passed in, with a shape of ``(n, 3)``.
"""
vec = np.array(vec, copy=False).reshape(-1, 3)
n = (vec.T / veclength(vec)).T
if n.size == 3:
n = n[0]
return n
def scaleOffsetXform(scales, offsets): def scaleOffsetXform(scales, offsets):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment