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>2019-01-19 05:21:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-19 05:58:35 +0300
commit8a61ea7296f17428f062a840c560e08a5a2f72ea (patch)
treeae91204131c79d7c3aa9e951b3eb5d7a6968d5b8 /source/blender/python/mathutils/mathutils_noise.c
parentc59370bf643f6e85473c560c8f5edcf73cc36e8e (diff)
Cleanup: add trailing commas
Prevents clang-format merging into a single line.
Diffstat (limited to 'source/blender/python/mathutils/mathutils_noise.c')
-rw-r--r--source/blender/python/mathutils/mathutils_noise.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/mathutils/mathutils_noise.c b/source/blender/python/mathutils/mathutils_noise.c
index 5e3e86c8ddf..fd41ff360cb 100644
--- a/source/blender/python/mathutils/mathutils_noise.c
+++ b/source/blender/python/mathutils/mathutils_noise.c
@@ -216,7 +216,7 @@ static PyC_FlagSet bpy_noise_types[] = {
{TEX_VORONOI_F2F1, "VORONOI_F2F1"},
{TEX_VORONOI_CRACKLE, "VORONOI_CRACKLE"},
{TEX_CELLNOISE, "CELLNOISE"},
- {0, NULL}
+ {0, NULL},
};
/* Metric basis enum */
@@ -230,7 +230,7 @@ static PyC_FlagSet bpy_noise_metrics[] = {
{TEX_MINKOVSKY, "MINKOVSKY"},
{TEX_MINKOVSKY_HALF, "MINKOVSKY_HALF"},
{TEX_MINKOVSKY_FOUR, "MINKOVSKY_FOUR"},
- {0, NULL}
+ {0, NULL},
};
/* Fills an array of length size with random numbers in the range (-1, 1)*/
@@ -1044,7 +1044,7 @@ static PyMethodDef M_Noise_methods[] = {
{"voronoi", (PyCFunction) M_Noise_voronoi, METH_VARARGS | METH_KEYWORDS, M_Noise_voronoi_doc},
{"cell", (PyCFunction) M_Noise_cell, METH_VARARGS, M_Noise_cell_doc},
{"cell_vector", (PyCFunction) M_Noise_cell_vector, METH_VARARGS, M_Noise_cell_vector_doc},
- {NULL, NULL, 0, NULL}
+ {NULL, NULL, 0, NULL},
};
static struct PyModuleDef M_Noise_module_def = {