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>2007-04-04 17:18:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-04-04 17:18:41 +0400
commitafdd54fa3720c267f30e48ed45c449d80449bac0 (patch)
tree3192044fa53f6e1fd3d1b0256963c2d4c090d700 /source/blender/src/editcurve.c
parent203e6ed82b444786d7999e88cebef84d6d429765 (diff)
moved source and text to american spelling
* colour -> color * centre -> center * normalise -> normalize * modelling -> modeling
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index 7aa513767c1..e3dc812831b 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -2463,7 +2463,7 @@ static void spin_nurb(float *dvec, short mode)
Mat3CpyMat4(persmat, G.vd->viewmat);
Mat3Inv(persinv, persmat);
- /* imat and centre and size */
+ /* imat and center and size */
Mat3CpyMat4(bmat, G.obedit->obmat);
Mat3Inv(imat, bmat);
@@ -2479,7 +2479,7 @@ static void spin_nurb(float *dvec, short mode)
n[0]= G.vd->viewinv[2][0];
n[1]= G.vd->viewinv[2][1];
n[2]= G.vd->viewinv[2][2];
- Normalise(n);
+ Normalize(n);
}
phi= M_PI/8.0;
@@ -3743,7 +3743,7 @@ Nurb *addNurbprim(int type, int stype, int newname)
if (G.vd) grid = G.vd->grid;
else grid = 1.0;
- /* imat and centre and size */
+ /* imat and center and size */
if(G.obedit) {
Mat3CpyMat4(mat, G.obedit->obmat);