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

New little function to normalise vectors. Sick of duplicating this code

everywhere.
parent 66ab6c8f
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,14 @@ spaces. The following functions are provided: ...@@ -22,6 +22,14 @@ spaces. The following functions are provided:
axisBounds axisBounds
flirtMatrixToSform flirtMatrixToSform
sformToFlirtMatrix sformToFlirtMatrix
And a few more functions are provided for working with vectors:
.. autosummary::
:nosignatures:
veclength
normalise
""" """
import numpy as np import numpy as np
...@@ -45,6 +53,16 @@ def concat(*xforms): ...@@ -45,6 +53,16 @@ def concat(*xforms):
return result return result
def veclength(vec):
"""Returns the length of the given vector. """
return np.sqrt(np.dot(vec, vec))
def normalise(vec):
"""Normalises the given vector to unit length. """
return vec / veclength(vec)
def scaleOffsetXform(scales, offsets): def scaleOffsetXform(scales, offsets):
"""Creates and returns an affine transformation matrix which encodes """Creates and returns an affine transformation matrix which encodes
the specified scale(s) and offset(s). the specified scale(s) and offset(s).
......
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