one fixe with lie_exp

This commit is contained in:
Zeno Rogue 2023-01-04 23:31:12 +01:00
parent 601457ebc2
commit 82ce9914c5
1 changed files with 1 additions and 1 deletions

View File

@ -2850,7 +2850,7 @@ EX namespace nisot {
EX transmatrix lie_transport(const transmatrix Position, const hyperpoint direction) {
transmatrix pshift = eupush( tC0(Position) );
transmatrix irot = iso_inverse(pshift) * Position;
hyperpoint tH = lie_exp(irot * direction);
hyperpoint tH = unshift(lie_exp(irot * direction));
return pshift * eupush(tH) * irot;
}