Skip to content
Snippets Groups Projects
Commit 55e861bf authored by Achilles Kappis's avatar Achilles Kappis
Browse files

Fixed rotation bug for UCA

parent d03fd671
No related branches found
No related tags found
No related merge requests found
......@@ -392,8 +392,7 @@ function [omniPos, fig8Pos, triPos, boxPos, box2DPos, tetPos, fig8Vec, triangleV
% Rotate and position tetrahedrals
for measPosIdx = numel(az):-1:1
% tetPos(measPosIdx, :, :) = omniPos(measPosIdx, :) + tempPos * rotMat3d(0, 0, -az(measPosIdx) + pi);
tetPos(measPosIdx, :, :) = omniPos(measPosIdx, :) + tempPos * rotMat3d(0, 0, -az(measPosIdx));
tetPos(measPosIdx, :, :) = omniPos(measPosIdx, :) + tempPos * rotMat3dDeg(0, 0, -az(measPosIdx));
end
case "single"
tetPos = omniPos + tempPos * rotMat3dDeg(30, 30, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment