Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Gilbert <ascotan@gmail.com>2004-04-19 10:57:41 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-04-19 10:57:41 +0400
commita6a32cf50414b5660c802dcd9067d422aaf5537f (patch)
treecaf1a009946eef9ec9c74fdb90bc43b70a29f806 /source/blender/python/api2_2x/Bone.h
parent713a0ceefea27ea3d0b3a18a5d21cbe65803b93c (diff)
-NLA module added
-ability to set poses for the armatures - allows for keyframing armatures -adds support for actions/actionchannels -additional checking for addBone and clear parenting -moved getActionIpos from object module to NLA module
Diffstat (limited to 'source/blender/python/api2_2x/Bone.h')
-rw-r--r--source/blender/python/api2_2x/Bone.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/source/blender/python/api2_2x/Bone.h b/source/blender/python/api2_2x/Bone.h
index 84c2b5e88e5..57ebb398104 100644
--- a/source/blender/python/api2_2x/Bone.h
+++ b/source/blender/python/api2_2x/Bone.h
@@ -33,20 +33,16 @@
#define EXPP_BONE_H
#include <Python.h>
-
#include <DNA_armature_types.h>
/** Bone module initialization function. */
PyObject *Bone_Init (void);
-
/** Python BPy_Bone structure definition. */
-typedef struct
-{
- PyObject_HEAD Bone *bone;
-}
-BPy_Bone;
-
+typedef struct{
+ PyObject_HEAD
+ Bone *bone;
+}BPy_Bone;
PyObject *Bone_CreatePyObject (struct Bone *obj);
int Bone_CheckPyObject (PyObject * py_obj);