3 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version. The Blender
9 * Foundation also sells licenses for use in proprietary software under
10 * the Blender License. See http://www.blender.org/BL/ for information
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
23 * All rights reserved.
25 * This is a new part of Blender.
27 * Contributor(s): Michel Selten
29 * ***** END GPL/BL DUAL LICENSE BLOCK *****
37 #include <BDR_editobject.h>
38 #include <BKE_armature.h>
39 #include <BKE_curve.h>
40 #include <BKE_global.h>
41 #include <BKE_library.h>
42 #include <BKE_lattice.h>
45 #include <BKE_object.h>
46 #include <BKE_scene.h>
47 #include <BKE_displist.h> /* for makeDispList */
48 #include <BKE_font.h> /* for text_to_font */
49 #include <BLI_arithb.h>
50 #include <BLI_blenlib.h>
51 #include <DNA_armature_types.h>
53 #include <DNA_ika_types.h>
54 #include <DNA_listBase.h>
55 #include <DNA_scene_types.h>
56 #include <DNA_userdef_types.h>
57 #include <DNA_view3d_types.h>
59 #include "bpy_types.h"
60 #include "gen_utils.h"
67 /* The Object PyType Object defined in Object.c */
68 extern PyTypeObject Object_Type;
70 #define BPy_Object_Check(v) \
71 ((v)->ob_type == &Object_Type) /* for type checking */
73 /*****************************************************************************/
74 /* Python BPy_Object structure definition. */
75 /*****************************************************************************/
78 struct Object * object;
81 int EXPP_add_obdata(struct Object *object);
83 #endif /* EXPP_OBJECT_H */