r10436: add cameras.lisp file. avoid reader errors in openmcl
[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 #:photo
23   (:use #:common-lisp)
24   (:export
25
26    ;; cameras.lisp
27    #:sensor-dimensions
28    #:format-dimensions
29    
30    ;; fov.lisp
31    #:aov
32    #:aov-format
33    #:aov-distance
34    
35    ;; dof.lisp
36    #:coc-format
37    #:coc-sensor
38    #:coc-airy
39    #:dof
40    #:hyperfocal
41    ))
42