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-11-08 16:02:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-11-08 16:02:59 +0300
commit40f871c07f7d6f2bd5696ea0585380a30beb8161 (patch)
tree6c708fb864625ba7c3d79be5edb2bb59c68ce492 /source/blender/src/editcurve.c
parent0100ebe2302d5ed36c4f4258e779e81a7e7bec66 (diff)
* new stamp option to stamp forground sequence strip name.
* made stamp filename optional * renamed weightpaint "Filter" to "Blur" * made the defailt weightpaint opacity 1.0 rather then 0.2 so when you select 1.0 weight you can paint it with without multiple clicks.
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index 9d86f88b377..358e6332d6d 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -1212,7 +1212,7 @@ void smoothradiusNurb( void )
end_rad = (nu->bezt+end_sel+1)->radius;
}
- /* Now Blend between the 2 points */
+ /* Now Blend between the points */
range = (float)(end_sel - start_sel) + 2.0f;
for(bezt=nu->bezt+start_sel, a=start_sel; a<=end_sel; a++, bezt++) {
fac = (float)(1+a-start_sel) / range;
@@ -1274,7 +1274,7 @@ void smoothradiusNurb( void )
end_rad = (nu->bp+end_sel+1)->radius;
}
- /* Now Blend between the 2 points */
+ /* Now Blend between the points */
range = (float)(end_sel - start_sel) + 2.0f;
for(bp=nu->bp+start_sel, a=start_sel; a<=end_sel; a++, bp++) {
fac = (float)(1+a-start_sel) / range;