~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/makesdna/DNA_camera_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * blenlib/DNA_camera_types.h (mar-2001 nzc)
3
3
 *
4
 
 * $Id: DNA_camera_types.h,v 1.7 2003/12/21 21:52:48 ton Exp $ 
 
4
 * $Id: DNA_camera_types.h,v 1.11 2005/04/23 20:49:23 ton Exp $ 
5
5
 *
6
6
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
7
 *
46
46
typedef struct Camera {
47
47
        ID id;
48
48
        
49
 
        short type, flag, drawzoom, hold;
 
49
        short type, flag;
50
50
        float clipsta, clipend;
51
 
        float lens, drawsize;
 
51
        float lens, ortho_scale, drawsize;
52
52
        
 
53
        /* yafray: dof params */
 
54
        float YF_dofdist, YF_aperture;
 
55
        short YF_bkhtype, YF_bkhbias;
 
56
        float YF_bkhrot;
 
57
 
53
58
        struct Ipo *ipo;
54
59
        
55
60
        ScriptLink scriptlink;
64
69
/* flag */
65
70
#define CAM_SHOWLIMITS  1
66
71
#define CAM_SHOWMIST    2
 
72
/* yafray: dof sampling switch */
 
73
#define CAM_YF_NO_QMC   4
 
74
 
67
75
 
68
76
#ifdef __cplusplus
69
77
}