You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function normDiv in pyCGM_single/pyCGM.py should be calculation the normalization, vec, and then dividing every x, y, and z by vec. Instead it divides each x, y, z by vec twice. I believe just removing the following line,
This seems to not be used anywhere and is legacy, once unittests are done please delete it.
cadop
added
trivial
simple issue of not much concern
bug-light
A bug that hasn't caused problems but could later
and removed
trivial
simple issue of not much concern
labels
Oct 21, 2020
Function normDiv in pyCGM_single/pyCGM.py should be calculation the normalization,
vec
, and then dividing every x, y, and z byvec
. Instead it divides each x, y, z byvec
twice. I believe just removing the following line,pyCGM/pyCGM_Single/pyCGM.py
Line 2256 in 360fb86
v = [v[0]/vec,v[1]/vec,v[2]/vec]
The text was updated successfully, but these errors were encountered: