X-Git-Url: http://git.kpe.io/?p=cl-photo.git;a=blobdiff_plain;f=package.lisp;h=0096657f0bd527222c685c6fe8e55129a79cb78f;hp=ee7dcdda0e9f870f95b202ebca3977fb78b583d0;hb=HEAD;hpb=2502270d59bbf71c29d82486997d38a3981b307c diff --git a/package.lisp b/package.lisp old mode 100755 new mode 100644 index ee7dcdd..0096657 --- a/package.lisp +++ b/package.lisp @@ -9,21 +9,56 @@ ;;;; ;;;; $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 ))