From 382ded688a31065b456ee213dc8756be6225b732 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 17 Jul 2012 18:14:59 +0000 Subject: Spellcheck: minkovsky -> minkowski! (Only in comments/UI messages :/ ). --- source/blender/python/mathutils/mathutils_noise.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python/mathutils') diff --git a/source/blender/python/mathutils/mathutils_noise.c b/source/blender/python/mathutils/mathutils_noise.c index 9460c4d0b36..da32e36dc02 100644 --- a/source/blender/python/mathutils/mathutils_noise.c +++ b/source/blender/python/mathutils/mathutils_noise.c @@ -717,7 +717,7 @@ PyDoc_STRVAR(M_Noise_voronoi_doc, " :type position: :class:`mathutils.Vector`\n" " :arg distance_metric: Method of measuring distance.\n" " :type distance_metric: Value in noise.distance_metrics or int\n" -" :arg exponent: The exponent for Minkovsky distance metric.\n" +" :arg exponent: The exponent for Minkowski distance metric.\n" " :type exponent: float\n" " :return: A list of distances to the four closest features and their locations.\n" " :rtype: list of four floats, list of four :class:`mathutils.Vector` types\n" @@ -729,7 +729,7 @@ static PyObject *M_Noise_voronoi(PyObject *UNUSED(self), PyObject *args) float vec[3]; float da[4], pa[12]; int dtype = 0; - float me = 2.5f; /* default minkovsky exponent */ + float me = 2.5f; /* default minkowski exponent */ int i; -- cgit v1.2.3