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

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_osa_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
 
/**
2
 
 * blenlib/BKE_osa_types.h (mar-2001 nzc)
3
 
 *      
4
 
 * $Id: BKE_osa_types.h,v 1.6 2003/12/16 14:11:58 ton Exp $ 
5
 
 *
6
 
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or
9
 
 * modify it under the terms of the GNU General Public License
10
 
 * as published by the Free Software Foundation; either version 2
11
 
 * of the License, or (at your option) any later version. The Blender
12
 
 * Foundation also sells licenses for use in proprietary software under
13
 
 * the Blender License.  See http://www.blender.org/BL/ for information
14
 
 * about this.
15
 
 *
16
 
 * This program is distributed in the hope that it will be useful,
17
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
 * GNU General Public License for more details.
20
 
 *
21
 
 * You should have received a copy of the GNU General Public License
22
 
 * along with this program; if not, write to the Free Software Foundation,
23
 
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
 
 *
25
 
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
26
 
 * All rights reserved.
27
 
 *
28
 
 * The Original Code is: all of this file.
29
 
 *
30
 
 * Contributor(s): none yet.
31
 
 *
32
 
 * ***** END GPL/BL DUAL LICENSE BLOCK *****
33
 
 */
34
 
#ifndef BKE_OSA_TYPES_H
35
 
#define BKE_OSA_TYPES_H
36
 
 
37
 
/*  typedef struct Osa */
38
 
typedef struct RE_Osa
39
 
{
40
 
        float dxco[3], dyco[3];
41
 
        float dxlo[3], dylo[3], dxgl[3], dygl[3], dxuv[3], dyuv[3];
42
 
        float dxref[3], dyref[3], dxorn[3], dyorn[3];
43
 
        float dxno[3], dyno[3], dxview, dyview;
44
 
        float dxlv[3], dylv[3];
45
 
        float dxwin[3], dywin[3];
46
 
        float dxsticky[3], dysticky[3];
47
 
        float dxrefract[3], dyrefract[3];
48
 
} Osa;
49
 
 
50
 
/*  extern Osa O;  */
51
 
/* This one used to be done in render/extern/include/render.h, because
52
 
    memory was allocated in that module. (nzc)*/
53
 
 
54
 
#endif
55