Patrizia
Patrizia
The same issue occurs with polyscope 2.3.0.
Since this range is pretty large, I used the C++ library and bisected, it identified this commit as the first where the problem occurred: ```cb3cc601adcd3edad19c11692762c950fd350d73 is the first bad commit...
I've been debugging and I've just found the reason that this commit broke it :) ```diff -float transScale = abs(glm::determinant(glm::mat3x3(T))) / T[3][3]; +float transScale = std::abs(glm::determinant(glm::mat3x3(T))) / T[3][3]; ``` Prior...