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:
authorTon Roosendaal <ton@blender.org>2003-04-29 19:30:59 +0400
committerTon Roosendaal <ton@blender.org>2003-04-29 19:30:59 +0400
commitceb3e8cc2a60dabf95597cdeab14c3460121bbec (patch)
tree1cb9188730cd8893cede9105f9e3d4f1100b001e /source/blender/src/editlattice.c
parenta4f2249497009c31f1c1823869e3130a51a15f7b (diff)
phew... a whole bunch of old and nasty files translated, including the
central mesh editing one.
Diffstat (limited to 'source/blender/src/editlattice.c')
-rw-r--r--source/blender/src/editlattice.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/src/editlattice.c b/source/blender/src/editlattice.c
index 599af1e4947..2c958d92110 100644
--- a/source/blender/src/editlattice.c
+++ b/source/blender/src/editlattice.c
@@ -178,7 +178,7 @@ void load_editLatt(void)
lt= G.obedit->data;
- /* zijn er keys? */
+ /* are there keys? */
if(lt->key) {
actkey= lt->key->block.first;
while(actkey) {
@@ -188,7 +188,7 @@ void load_editLatt(void)
}
if(actkey) {
- /* aktieve key: vertices */
+ /* active key: vertices */
tot= editLatt->pntsu*editLatt->pntsv*editLatt->pntsw;
if(actkey->data) MEM_freeN(actkey->data);
@@ -259,14 +259,14 @@ void deselectall_Latt(void)
static BPoint *findnearestLattvert(int sel)
{
- /* sel==1: selected krijgen een nadeel */
- /* in bp wordt nearest weggeschreven */
+ /* sel==1: selected get a disadvantage */
+ /* in bp nearest is written */
BPoint *bp1, *bp;
short dist= 100, temp, mval[2], a;
bp= 0;
- /* projektie doen */
+ /* do projection */
calc_lattverts_ext(); /* drawobject.c */
getmouseco_areawin(mval);