# HG changeset patch # User Markus Mützel # Date 1634896854 -7200 # Node ID 789d0e220350a0fb98f1401676ab4ac39bf36b63 # Parent 4fe897f5db8e2c4673e544c5c487a0fd01aeb88c camlookat.m: Increase tolerance in BISTs (bug #61358). * scripts/plot/appearance/camlookat.m: Increase the tolerance for some BISTs that were failing on arm64. diff -r 4fe897f5db8e -r 789d0e220350 scripts/plot/appearance/camlookat.m --- a/scripts/plot/appearance/camlookat.m Thu Oct 21 16:42:38 2021 +0200 +++ b/scripts/plot/appearance/camlookat.m Fri Oct 22 12:00:54 2021 +0200 @@ -198,15 +198,15 @@ %! camlookat (h1); %! dir2 = camtarget () - campos (); %! dir2 /= norm (dir2); -%! assert (dir, dir2, -2*eps); +%! assert (dir, dir2, -4*eps); %! camlookat (h2); %! dir2 = camtarget () - campos (); %! dir2 /= norm (dir2); -%! assert (dir, dir2, -2*eps); +%! assert (dir, dir2, -4*eps); %! camlookat ([h1 h2]); %! dir2 = camtarget () - campos (); %! dir2 /= norm (dir2); -%! assert (dir, dir2, -2*eps); +%! assert (dir, dir2, -4*eps); %! unwind_protect_cleanup %! close (hf); %! end_unwind_protect