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
path: root/source
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2003-12-23 22:03:30 +0300
committerMartin Poirier <theeth@yahoo.com>2003-12-23 22:03:30 +0300
commit4d8fce856867f7755e91de96f3cc2030147e2100 (patch)
treecb5fa201b479d81e09f3ce6e53b99309dc09bfde /source
parent454166026afd52e546716a7aa33821e86d2371af (diff)
Fixed bevel width preview drawing which draws the correctly with higher recursion level (it was incorrect for anything higher than 2).
Also commented out a couple of unused variables that were shouting warnings (and we all love the lack of warning and the couple of extra free bytes) :)
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editmesh.c34
1 files changed, 15 insertions, 19 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index 226c6f96609..43386aca853 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -8038,12 +8038,12 @@ void bevel_mesh(float bsize, int allfaces)
/* 2 = edge quad */
/* 3 = fill polygon (vertex clusters) */
- EditVlak *evl, *nextvl, *example;
+ EditVlak *evl, *example; //, *nextvl;
EditEdge *eed, *eed2;
- EditVert *neweve[1024], *eve, *eve2, *eve3, *eve4, *v1, *v2, *v3, *v4;
+ EditVert *neweve[1024], *eve, *eve2, *eve3, *v1, *v2, *v3, *v4; //, *eve4;
float con1, con2, con3;
- short found4, search;
- float f1, f2, f3, f4;
+ //short found4, search;
+ //float f1, f2, f3, f4;
float cent[3], min[3], max[3];
int a, b, c;
float limit= 0.001;
@@ -8437,10 +8437,9 @@ void bevel_mesh_recurs(float bsize, short recurs, int allfaces)
void bevel_menu()
{
- EditVlak *evl;
char Finished = 0, Canceled = 0, str[100];
- short mval[2], oval[2], curval[2], event = 0, recurs = 1;
- float vec[3], d, drawd, centre[3];
+ short mval[2], oval[2], curval[2], event = 0, recurs = 1, nr;
+ float vec[3], d, drawd, centre[3], fac = 1;
getmouseco_areawin(mval);
oval[0] = mval[0]; oval[1] = mval[1];
@@ -8453,10 +8452,12 @@ void bevel_menu()
if(button(&recurs, 1, 4, "Recurs:")==0) return;
+ for (nr=0; nr<recurs-1; nr++) {
+ if (nr==0) fac += 1.0/3.0; else fac += 1.0/(3 * nr * 2.0);
+ }
+
while (Finished == 0)
{
- short nr;
-
getmouseco_areawin(mval);
if (mval[0] != curval[0] || mval[1] != curval[1])
{
@@ -8466,17 +8467,12 @@ void bevel_menu()
window_to_3d(vec, mval[0]-oval[0], mval[1]-oval[1]);
d = Normalise(vec) / 10;
+
+ drawd = d * fac;
if (G.qual & LR_CTRLKEY)
- d = (float) floor(d * 10.0)/10.0;
+ drawd = (float) floor(drawd * 10.0)/10.0;
if (G.qual & LR_SHIFTKEY)
- d /= 10;
-
- drawd = d;
- for (nr=0; nr<recurs-1; nr++) {
- float tmp_d = d;
- if (nr==0) tmp_d /= 3; else tmp_d /= 2;
- drawd += tmp_d;
- }
+ drawd /= 10;
/*------------- Preview lines--------------- */
@@ -8539,7 +8535,7 @@ void bevel_menu()
}
}
if (Canceled==0) {
- bevel_mesh_recurs(d, recurs, 1);
+ bevel_mesh_recurs(drawd/fac, recurs, 1);
righthandfaces(1);
}
}