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>2012-03-04 00:36:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-04 00:36:09 +0400
commit35900761939465a3014ef58a12e9293d59575e32 (patch)
treee9fca2efa21e2b109084fca9b559593c30d9663f /source/blender/python/mathutils/mathutils_Quaternion.h
parent95670e03a01d30cda5a0f685974f28790be6809d (diff)
style cleanup - comment formatting
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Quaternion.h')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/mathutils/mathutils_Quaternion.h b/source/blender/python/mathutils/mathutils_Quaternion.h
index 8e91f26b08f..556e6d80948 100644
--- a/source/blender/python/mathutils/mathutils_Quaternion.h
+++ b/source/blender/python/mathutils/mathutils_Quaternion.h
@@ -42,10 +42,10 @@ typedef struct {
BASE_MATH_MEMBERS(quat);
} QuaternionObject;
-/*struct data contains a pointer to the actual data that the
-object uses. It can use either PyMem allocated data (which will
-be stored in py_data) or be a wrapper for data allocated through
-blender (stored in blend_data). This is an either/or struct not both*/
+/* struct data contains a pointer to the actual data that the
+ * object uses. It can use either PyMem allocated data (which will
+ * be stored in py_data) or be a wrapper for data allocated through
+ * blender (stored in blend_data). This is an either/or struct not both */
//prototypes
PyObject *Quaternion_CreatePyObject( float *quat, int type, PyTypeObject *base_type);