X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=081e3be52d571df29658d77f1b9b228df29f6703;hb=3dcc204b2a191c22f760f2c4caeb71e3802e3b80;hp=e53e48c604ae0628cc80375499a3aa7c95bbae49;hpb=0c8ab037b4267adebe22e07249e0e36fe7ca5f17;p=cl-photo.git diff --git a/package.lisp b/package.lisp old mode 100755 new mode 100644 index e53e48c..081e3be --- a/package.lisp +++ b/package.lisp @@ -7,23 +7,58 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: April 2005 ;;;; -;;;; $Id: package.lisp 8596 2004-02-03 18:32:50Z kevin $ +;;;; $Id$ ;;;; -;;;; This file, part of cl-photo, is Copyright (c) 2005 by Kevin Rosenberg. -;;;; Rights of modification and redistribution are in the LICENSE file. +;;;; This file, part of cl-photo, is Copyright (c) 2005 by Kevin M. Rosenberg +;;;; +;;;; cl-photo users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU General Public License v2 +;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:photo +(defpackage #:cl-photo (:use #:common-lisp #:kmrcl) + (:nicknames #:photo) (:export + ;; cameras.lisp + #:pixel-dimensions + #:pixel-size + #:imager-dimensions + #:output-dimensions + #:*digital-cameras* + #:*cameras* + ;; fov.lisp + #:aov + #:aov-format #:fov - #:fov-format - + #:magnification + #:bellows-factor + #:gaussian-lens + #:close-up + #:extension-tube + ;; dof.lisp + #:print-magnification + #:coc + #:coc-format + #:coc-pixels + #:coc-pixels-format + #:coc-airy + #:dof + #:hyperfocal + #:effective-aperture + #:rayleigh-limit + #:maximum-sharpness-aperture + + ;; tables.lisp + #:hyperfocal-table + #:aov-table + #:fov-table + #:dof-table ))