Reverting to 2_2x BPY

I was careful in selectively rolling back revisions, but if you've committed changes unrelated to BPY mixed with BPY changes, I might have reverted those too, so please double check.
This commit is contained in:
2007-12-17 20:21:06 +00:00
parent 293c91c305
commit 5dfef1ae35
129 changed files with 154 additions and 192 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Armature.c 12813 2007-12-07 09:51:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Armature.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: BGL.c 12267 2007-10-17 09:51:13Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: BGL.h 5407 2005-10-02 17:09:11Z zuster $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: BezTriple.c 11241 2007-07-12 11:51:21Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: BezTriple.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Blender.c 12702 2007-11-27 23:15:51Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Blender.h 4803 2005-07-18 03:50:37Z ascotan $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Bone.c 12399 2007-10-26 08:19:40Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Bone.h 12399 2007-10-26 08:19:40Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Camera.c 12078 2007-09-18 06:41:29Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Camera.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Constraint.c 12705 2007-11-28 12:42:36Z ton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Constraint.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: CurNurb.c 12813 2007-12-07 09:51:02Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: CurNurb.h 10269 2007-03-15 01:09:14Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Curve.c 12752 2007-12-01 23:25:00Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Curve.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Draw.c 12893 2007-12-15 18:24:16Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
@@ -362,47 +362,34 @@ static char Method_Exit_doc[] = "() - Exit the windowing interface";
*/
PyObject *M_Button_List = NULL;
/*
* here we engage in some macro trickery to define the PyMethodDef table
*/
#define _MethodDef(func, prefix) \
{#func, prefix##_##func, METH_VARARGS, prefix##_##func##_doc}
/* So that _MethodDef(delete, Scene) expands to:
* {"delete", Scene_delete, METH_VARARGS, Scene_delete_doc} */
#undef MethodDef
#define MethodDef(func) _MethodDef(func, Method)
static struct PyMethodDef Draw_methods[] = {
MethodDef( Create ),
MethodDef( UIBlock ),
MethodDef( Button ),
MethodDef( Toggle ),
MethodDef( Menu ),
MethodDef( Slider ),
MethodDef( Scrollbar ),
MethodDef( ColorPicker ),
MethodDef( Normal ),
MethodDef( Number ),
MethodDef( String ),
MethodDef( GetStringWidth ),
MethodDef( Text ),
MethodDef( Label ),
MethodDef( PupMenu ),
MethodDef( PupIntInput ),
MethodDef( PupFloatInput ),
MethodDef( PupStrInput ),
MethodDef( PupBlock ),
MethodDef( Image ),
{"Create", (PyCFunction)Method_Create, METH_VARARGS, Method_Create_doc},
{"UIBlock", (PyCFunction)Method_UIBlock, METH_VARARGS, Method_UIBlock_doc},
{"Button", (PyCFunction)Method_Button, METH_VARARGS, Method_Button_doc},
{"Toggle", (PyCFunction)Method_Toggle, METH_VARARGS, Method_Toggle_doc},
{"Menu", (PyCFunction)Method_Menu, METH_VARARGS, Method_Menu_doc},
{"Slider", (PyCFunction)Method_Slider, METH_VARARGS, Method_Slider_doc},
{"Scrollbar", (PyCFunction)Method_Scrollbar, METH_VARARGS, Method_Scrollbar_doc},
{"ColorPicker", (PyCFunction)Method_ColorPicker, METH_VARARGS, Method_ColorPicker_doc},
{"Normal", (PyCFunction)Method_Normal, METH_VARARGS, Method_Normal_doc},
{"Number", (PyCFunction)Method_Number, METH_VARARGS, Method_Number_doc},
{"String", (PyCFunction)Method_String, METH_VARARGS, Method_String_doc},
{"GetStringWidth", (PyCFunction)Method_GetStringWidth, METH_VARARGS, Method_GetStringWidth_doc},
{"Text", (PyCFunction)Method_Text, METH_VARARGS, Method_Text_doc},
{"Label", (PyCFunction)Method_Label, METH_VARARGS, Method_Label_doc},
{"PupMenu", (PyCFunction)Method_PupMenu, METH_VARARGS, Method_PupMenu_doc},
{"PupIntInput", (PyCFunction)Method_PupIntInput, METH_VARARGS, Method_PupIntInput_doc},
{"PupFloatInput", (PyCFunction)Method_PupFloatInput, METH_VARARGS, Method_PupFloatInput_doc},
{"PupStrInput", (PyCFunction)Method_PupStrInput, METH_VARARGS, Method_PupStrInput_doc},
{"PupBlock", (PyCFunction)Method_PupBlock, METH_VARARGS, Method_PupBlock_doc},
{"Image", (PyCFunction)Method_Image, METH_VARARGS, Method_Image_doc},
{"Exit", (PyCFunction)Method_Exit, METH_NOARGS, Method_Exit_doc},
MethodDef( Redraw ),
{"Redraw", (PyCFunction)Method_Redraw, METH_VARARGS, Method_Redraw_doc},
{"Draw", (PyCFunction)Method_Draw, METH_NOARGS, Method_Draw_doc},
MethodDef( Register ),
{"Register", (PyCFunction)Method_Register, METH_VARARGS, Method_Register_doc},
{"PushButton", (PyCFunction)Method_Button, METH_VARARGS, Method_Button_doc},
MethodDef( BeginAlign ),
MethodDef( EndAlign),
{"BeginAlign", (PyCFunction)Method_BeginAlign, METH_VARARGS, Method_BeginAlign_doc},
{"EndAlign", (PyCFunction)Method_EndAlign, METH_VARARGS, Method_EndAlign_doc},
{NULL, NULL, 0, NULL}
};

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Draw.h 11387 2007-07-27 06:14:25Z joeedh $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: EXPP_interface.c 7338 2006-04-30 16:22:31Z ianwill $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: EXPP_interface.h 7338 2006-04-30 16:22:31Z ianwill $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Effect.c 11485 2007-08-05 09:21:29Z aligorith $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Effect.h 5817 2005-11-17 19:19:05Z khughes $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Font.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Geometry.c 12867 2007-12-13 15:06:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Geometry.h 10324 2007-03-21 17:06:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Group.h 11864 2007-08-28 10:07:08Z sirdude $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Image.c 11241 2007-07-12 11:51:21Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Image.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Ipo.c 12078 2007-09-18 06:41:29Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Ipo.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Ipocurve.c 12078 2007-09-18 06:41:29Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Ipocurve.h 10943 2007-06-16 12:24:41Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Key.c 12867 2007-12-13 15:06:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Key.h 10783 2007-05-26 12:58:46Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Lamp.c 12810 2007-12-06 20:15:03Z khughes $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Lamp.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Lattice.c 11130 2007-06-30 00:18:10Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Lattice.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/**
* $Id$
* $Id: Library.c 10943 2007-06-16 12:24:41Z campbellbarton $
*
* Blender.Library BPython module implementation.
* This submodule has functions to append data from .blend files.

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Library.h 10323 2007-03-21 14:25:31Z stiv $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: MTex.c 10279 2007-03-16 11:38:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: MTex.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
#
# $Id$
# $Id: Makefile 11904 2007-08-31 16:16:33Z sirdude $
#
# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
#

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Material.c 12078 2007-09-18 06:41:29Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Material.h 10649 2007-05-04 03:23:40Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Mathutils.c 11502 2007-08-06 14:27:08Z khughes $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Mathutils.h 10943 2007-06-16 12:24:41Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Mesh.c 12892 2007-12-15 17:41:13Z joeedh $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
@@ -5394,7 +5394,7 @@ static PyObject *MFaceSeq_delete( BPy_MFaceSeq * self, PyObject *args )
return EXPP_ReturnPyObjError( PyExc_TypeError,
"sequence must contain at least one int or MFace" );
face_table = (unsigned int *)MEM_callocN( len*sizeof( unsigned int ),
face_table = MEM_callocN( len*sizeof( unsigned int ),
"face_table" );
/* get the indices of faces to be removed */
@@ -5517,15 +5517,12 @@ static PyObject *MFaceSeq_delete( BPy_MFaceSeq * self, PyObject *args )
++face_count;
}
}
/* for each face, deselect each edge */
/* for each remaining face, select all edges */
tmpface = mesh->mface;
fface = (struct fourEdges *)face_edges;
for( i = mesh->totface; i--; ++tmpface, ++fface ) {
if( tmpface->v1 != UINT_MAX ) {
FaceEdges (*face)[4];
face = (void *)face_edges;
face += face_table[i];
fface->v[0]->sel = 1;
fface->v[1]->sel = 1;
fface->v[2]->sel = 1;
@@ -5533,7 +5530,6 @@ static PyObject *MFaceSeq_delete( BPy_MFaceSeq * self, PyObject *args )
fface->v[3]->sel = 1;
}
}
/* now mark the selected edges for deletion */
edge_count = 0;

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Mesh.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Metaball.c 11136 2007-07-01 05:41:23Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Metaball.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Modifier.c 12840 2007-12-11 01:58:22Z khughes $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Modifier.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: NLA.c 11907 2007-08-31 18:21:12Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: NLA.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: NMesh.c 12108 2007-09-22 17:54:13Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: NMesh.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Node.c 10454 2007-04-04 11:27:43Z jesterking $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Node.h 10449 2007-04-03 11:24:11Z jesterking $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/**
* $Id$
* $Id: Noise.c 12056 2007-09-17 06:11:06Z aligorith $
*
* Blender.Noise BPython module implementation.
* This submodule has functions to generate noise of various types.

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Object.c 12801 2007-12-05 21:50:23Z blendix $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Object.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Particle.c 10279 2007-03-16 11:38:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Particle.h 5702 2005-11-04 20:34:38Z khughes $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Registry.c 4803 2005-07-18 03:50:37Z ascotan $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Registry.h 3209 2004-10-07 19:25:40Z stiv $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,6 +1,6 @@
/*
*
* $Id$
* $Id: Scene.c 12513 2007-11-07 18:52:23Z joeedh $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Scene.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Sound.c 11123 2007-06-29 08:59:26Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Sound.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: SurfNurb.c 11400 2007-07-28 09:26:53Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: SurfNurb.h 10269 2007-03-15 01:09:14Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Sys.c 10945 2007-06-16 13:17:41Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Sys.h 4803 2005-07-18 03:50:37Z ascotan $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Text.c 11123 2007-06-29 08:59:26Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Text.h 10136 2007-02-25 01:07:28Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Text3d.c 11099 2007-06-28 13:46:42Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Text3d.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Texture.c 12535 2007-11-09 10:29:19Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Texture.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Types.c 11713 2007-08-19 19:06:42Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Types.h 7266 2006-04-16 15:28:50Z stiv $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: Window.c 12813 2007-12-07 09:51:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: World.c 12078 2007-09-18 06:41:29Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: World.h 10269 2007-03-15 01:09:14Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy.c 10550 2007-04-18 22:53:20Z campbellbarton $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy.h 10546 2007-04-18 14:40:01Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy_config.c 11123 2007-06-29 08:59:26Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy_config.h 10546 2007-04-18 14:40:01Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy_data.c 12056 2007-09-17 06:11:06Z aligorith $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: bpy_types.h 4803 2005-07-18 03:50:37Z ascotan $
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: charRGBA.c 10782 2007-05-26 04:39:31Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: charRGBA.h 10280 2007-03-16 14:44:31Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: constant.c 10778 2007-05-25 16:43:25Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: constant.h 7089 2006-03-18 15:23:02Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: euler.c 12314 2007-10-20 20:24:09Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: euler.h 8367 2006-08-22 09:13:44Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id: gen_library.h 11877 2007-08-29 03:09:22Z campbellbarton $
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
*

Some files were not shown because too many files have changed in this diff Show More