Update domain name to kpe.io
[cl-photo.git] / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package file for cl-photo
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  April 2005
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of cl-photo, is Copyright (c) 2005 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-photo users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;;
18 ;;;; *************************************************************************
19
20 (in-package #:cl-user)
21
22 (defpackage #:cl-photo
23   (:use #:common-lisp #:kmrcl)
24   (:nicknames #:photo)
25   (:export
26
27    ;; cameras.lisp
28    #:pixel-dimensions
29    #:pixel-size
30    #:imager-dimensions
31    #:output-dimensions
32    #:*digital-cameras*
33    #:*cameras*
34
35    ;; fov.lisp
36    #:aov
37    #:aov-format
38    #:fov
39    #:magnification
40    #:bellows-factor
41    #:gaussian-lens
42    #:close-up
43    #:extension-tube
44
45    ;; dof.lisp
46    #:print-magnification
47    #:coc
48    #:coc-format
49    #:coc-pixels
50    #:coc-pixels-format
51    #:coc-airy
52    #:dof
53    #:hyperfocal
54    #:effective-aperture
55    #:rayleigh-limit
56    #:maximum-sharpness-aperture
57
58    ;; tables.lisp
59    #:hyperfocal-table
60    #:aov-table
61    #:fov-table
62    #:dof-table
63    ))
64