From: Kevin M. Rosenberg Date: Thu, 28 Apr 2005 15:37:46 +0000 (+0000) Subject: r10491: update tests for fix in fov units X-Git-Tag: v0.13~23 X-Git-Url: http://git.kpe.io/?p=cl-photo.git;a=commitdiff_plain;h=c792bed981fd10339af42f8c1e436097e2e533b7 r10491: update tests for fix in fov units --- diff --git a/tests.lisp b/tests.lisp index 6405c27..73e009b 100644 --- a/tests.lisp +++ b/tests.lisp @@ -21,7 +21,7 @@ (defun verify-results (alist blist) (every #'identity (mapcar - (lambda (a b) (numbers-within-percentage a b 0.001)) + (lambda (a b) (numbers-within-percentage a b 0.01)) alist blist))) (defmacro def-numeric-test (name test &rest values) @@ -48,7 +48,7 @@ (def-numeric-test :fov.2 (fov 50 24 16 :magnification 1 :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :fov.3 (fov 50 24 16 :image-distance 100 :units :mm) @@ -56,7 +56,7 @@ (def-numeric-test :fov.4 (fov 50 24 16 :image-distance 100 :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :fov.5 (fov 50 24 16 :object-distance 100 :units :mm) @@ -64,8 +64,7 @@ (def-numeric-test :fov.6 (fov 50 24 16 :object-distance (cl-photo::mm->feet 100) :units :feet) - 2.583338E-4 1.7222258E-4 3.10478E-4 1 0.328083 100) - + 0.07874 0.052494 0.094634 1 0.328084 100) (def-numeric-test :mag.1 (magnification :focal-length 50 :image-distance 100 :units :mm) 1)