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:
authorCampbell Barton <ideasman42@gmail.com>2010-04-11 16:05:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-11 16:05:27 +0400
commitfe9a22a0182689125c8147934bc20bbc86141aab (patch)
tree8eb0e68bbb59f31438bd1fec1f991b0c07af9923 /source/blender
parent4c5fe03c9fedb50b1223933337df6d4a8a43db00 (diff)
py api file rename
- prefix mathutils api. - 2 blf.c files (annoying for debugging) - py api docs ignore keying sets as with operators.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/generic/blf_api.c (renamed from source/blender/python/generic/blf.c)2
-rw-r--r--source/blender/python/generic/blf_api.h (renamed from source/blender/python/generic/blf.h)0
-rw-r--r--source/blender/python/generic/geometry.c (renamed from source/blender/python/generic/Geometry.c)2
-rw-r--r--source/blender/python/generic/geometry.h (renamed from source/blender/python/generic/Geometry.h)2
-rw-r--r--source/blender/python/generic/mathutils.c (renamed from source/blender/python/generic/Mathutils.c)2
-rw-r--r--source/blender/python/generic/mathutils.h (renamed from source/blender/python/generic/Mathutils.h)8
-rw-r--r--source/blender/python/generic/mathutils_euler.c (renamed from source/blender/python/generic/euler.c)2
-rw-r--r--source/blender/python/generic/mathutils_euler.h (renamed from source/blender/python/generic/euler.h)0
-rw-r--r--source/blender/python/generic/mathutils_matrix.c (renamed from source/blender/python/generic/matrix.c)2
-rw-r--r--source/blender/python/generic/mathutils_matrix.h (renamed from source/blender/python/generic/matrix.h)0
-rw-r--r--source/blender/python/generic/mathutils_quat.c (renamed from source/blender/python/generic/quat.c)2
-rw-r--r--source/blender/python/generic/mathutils_quat.h (renamed from source/blender/python/generic/quat.h)0
-rw-r--r--source/blender/python/generic/mathutils_vector.c (renamed from source/blender/python/generic/vector.c)2
-rw-r--r--source/blender/python/generic/mathutils_vector.h (renamed from source/blender/python/generic/vector.h)0
-rw-r--r--source/blender/python/intern/bpy.c4
-rw-r--r--source/blender/python/intern/bpy_rna.c2
16 files changed, 15 insertions, 15 deletions
diff --git a/source/blender/python/generic/blf.c b/source/blender/python/generic/blf_api.c
index eda13db57b5..f1cbd0f7e7e 100644
--- a/source/blender/python/generic/blf.c
+++ b/source/blender/python/generic/blf_api.c
@@ -23,7 +23,7 @@
*/
#include <Python.h>
-#include "blf.h"
+#include "blf_api.h"
#include "../../blenfont/BLF_api.h"
diff --git a/source/blender/python/generic/blf.h b/source/blender/python/generic/blf_api.h
index fae20ace996..fae20ace996 100644
--- a/source/blender/python/generic/blf.h
+++ b/source/blender/python/generic/blf_api.h
diff --git a/source/blender/python/generic/Geometry.c b/source/blender/python/generic/geometry.c
index 158b07b1be5..5ba2d7f7a74 100644
--- a/source/blender/python/generic/Geometry.c
+++ b/source/blender/python/generic/geometry.c
@@ -27,7 +27,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "Geometry.h"
+#include "geometry.h"
/* Used for PolyFill */
#include "BKE_displist.h"
diff --git a/source/blender/python/generic/Geometry.h b/source/blender/python/generic/geometry.h
index 1e17ca6bf27..401efcc7888 100644
--- a/source/blender/python/generic/Geometry.h
+++ b/source/blender/python/generic/geometry.h
@@ -32,7 +32,7 @@
#define EXPP_Geometry_H
#include <Python.h>
-#include "Mathutils.h"
+#include "mathutils.h"
PyObject *Geometry_Init(void);
diff --git a/source/blender/python/generic/Mathutils.c b/source/blender/python/generic/mathutils.c
index 542bf7a6ca9..2a3912c1787 100644
--- a/source/blender/python/generic/Mathutils.c
+++ b/source/blender/python/generic/mathutils.c
@@ -47,7 +47,7 @@
* Moved to Geometry module: Intersect, TriangleArea, TriangleNormal, QuadNormal, LineIntersect
*/
-#include "Mathutils.h"
+#include "mathutils.h"
#include "BLI_math.h"
diff --git a/source/blender/python/generic/Mathutils.h b/source/blender/python/generic/mathutils.h
index 869ac4d70df..9457c254113 100644
--- a/source/blender/python/generic/Mathutils.h
+++ b/source/blender/python/generic/mathutils.h
@@ -33,10 +33,10 @@
#include <Python.h>
-#include "vector.h"
-#include "matrix.h"
-#include "quat.h"
-#include "euler.h"
+#include "mathutils_vector.h"
+#include "mathutils_matrix.h"
+#include "mathutils_quat.h"
+#include "mathutils_euler.h"
/* Can cast different mathutils types to this, use for generic funcs */
diff --git a/source/blender/python/generic/euler.c b/source/blender/python/generic/mathutils_euler.c
index 892e42657b7..e4759a57d22 100644
--- a/source/blender/python/generic/euler.c
+++ b/source/blender/python/generic/mathutils_euler.c
@@ -26,7 +26,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "Mathutils.h"
+#include "mathutils.h"
#include "BLI_math.h"
#include "BKE_utildefines.h"
diff --git a/source/blender/python/generic/euler.h b/source/blender/python/generic/mathutils_euler.h
index 994a5f1780e..994a5f1780e 100644
--- a/source/blender/python/generic/euler.h
+++ b/source/blender/python/generic/mathutils_euler.h
diff --git a/source/blender/python/generic/matrix.c b/source/blender/python/generic/mathutils_matrix.c
index 216139dc44f..67f91d19d1f 100644
--- a/source/blender/python/generic/matrix.c
+++ b/source/blender/python/generic/mathutils_matrix.c
@@ -25,7 +25,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "Mathutils.h"
+#include "mathutils.h"
#include "BKE_utildefines.h"
#include "BLI_math.h"
diff --git a/source/blender/python/generic/matrix.h b/source/blender/python/generic/mathutils_matrix.h
index b18a3e8e6fe..b18a3e8e6fe 100644
--- a/source/blender/python/generic/matrix.h
+++ b/source/blender/python/generic/mathutils_matrix.h
diff --git a/source/blender/python/generic/quat.c b/source/blender/python/generic/mathutils_quat.c
index 36d01e7aa9f..2e51c5ae0ec 100644
--- a/source/blender/python/generic/quat.c
+++ b/source/blender/python/generic/mathutils_quat.c
@@ -26,7 +26,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "Mathutils.h"
+#include "mathutils.h"
#include "BLI_math.h"
#include "BKE_utildefines.h"
diff --git a/source/blender/python/generic/quat.h b/source/blender/python/generic/mathutils_quat.h
index 6e0c9d6dd1f..6e0c9d6dd1f 100644
--- a/source/blender/python/generic/quat.h
+++ b/source/blender/python/generic/mathutils_quat.h
diff --git a/source/blender/python/generic/vector.c b/source/blender/python/generic/mathutils_vector.c
index fa26946a682..e4364865d25 100644
--- a/source/blender/python/generic/vector.c
+++ b/source/blender/python/generic/mathutils_vector.c
@@ -25,7 +25,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "Mathutils.h"
+#include "mathutils.h"
#include "BLI_blenlib.h"
#include "BKE_utildefines.h"
diff --git a/source/blender/python/generic/vector.h b/source/blender/python/generic/mathutils_vector.h
index fd95f5a6750..fd95f5a6750 100644
--- a/source/blender/python/generic/vector.h
+++ b/source/blender/python/generic/mathutils_vector.h
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 3f8daec0161..9bd67f678f8 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -35,9 +35,9 @@
#include "BLI_path_util.h"
/* external util modules */
-#include "../generic/Geometry.h"
+#include "../generic/geometry.h"
#include "../generic/bgl.h"
-#include "../generic/blf.h"
+#include "../generic/blf_api.h"
#include "../generic/IDProp.h"
static char bpy_home_paths_doc[] =
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index adb8247682a..860c1e32875 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -50,7 +50,7 @@
#define USE_MATHUTILS
#ifdef USE_MATHUTILS
-#include "../generic/Mathutils.h" /* so we can have mathutils callbacks */
+#include "../generic/mathutils.h" /* so we can have mathutils callbacks */
#include "../generic/IDProp.h" /* for IDprop lookups */