[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48110] branches/soc-2011-tomato: svn merge ^/trunk/blender -r48105:48109

Campbell Barton ideasman42 at gmail.com
Wed Jun 20 12:03:13 CEST 2012


Revision: 48110
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48110
Author:   campbellbarton
Date:     2012-06-20 10:03:02 +0000 (Wed, 20 Jun 2012)
Log Message:
-----------
svn merge ^/trunk/blender -r48105:48109

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48105

Modified Paths:
--------------
    branches/soc-2011-tomato/release/scripts/modules/console_python.py
    branches/soc-2011-tomato/release/scripts/startup/bl_ui/space_view3d_toolbar.py
    branches/soc-2011-tomato/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cpp
    branches/soc-2011-tomato/source/blender/nodes/composite/nodes/node_composite_lensdist.c

Property Changed:
----------------
    branches/soc-2011-tomato/
    branches/soc-2011-tomato/source/blender/editors/interface/interface.c
    branches/soc-2011-tomato/source/blender/editors/space_outliner/


Property changes on: branches/soc-2011-tomato
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/ge_harmony:42255,42279-42282,42286,42302,42338,42349,42616,42620,42698-42699,42739,42753,42773-42774,42832,44568,44597-44598,44793-44794
/branches/soc-2011-cucumber:37517,38166-38167,38177,38179-38180,38187,38242,38384,38387,38403-38404,38407,38968,38970,38973,39045,40845,42997-42998,43439
/branches/vgroup_modifiers:38694-39989
/trunk/blender:36831-48105
   + /branches/ge_harmony:42255,42279-42282,42286,42302,42338,42349,42616,42620,42698-42699,42739,42753,42773-42774,42832,44568,44597-44598,44793-44794
/branches/soc-2011-cucumber:37517,38166-38167,38177,38179-38180,38187,38242,38384,38387,38403-38404,38407,38968,38970,38973,39045,40845,42997-42998,43439
/branches/vgroup_modifiers:38694-39989
/trunk/blender:36831-48109

Modified: branches/soc-2011-tomato/release/scripts/modules/console_python.py
===================================================================
--- branches/soc-2011-tomato/release/scripts/modules/console_python.py	2012-06-20 09:34:26 UTC (rev 48109)
+++ branches/soc-2011-tomato/release/scripts/modules/console_python.py	2012-06-20 10:03:02 UTC (rev 48110)
@@ -96,7 +96,10 @@
 
         namespace["__builtins__"] = sys.modules["builtins"]
         namespace["bpy"] = bpy
+
+        # weak! - but highly convenient
         namespace["C"] = bpy.context
+        namespace["D"] = bpy.data
 
         replace_help(namespace)
 
@@ -305,6 +308,7 @@
                    'OUTPUT')
     add_scrollback("Convenience Imports: from mathutils import *; "
                    "from math import *", 'OUTPUT')
+    add_scrollback("Convenience Variables: C = bpy.context, D = bpy.data", 'OUTPUT')
     add_scrollback("", 'OUTPUT')
     sc.prompt = PROMPT
 

Modified: branches/soc-2011-tomato/release/scripts/startup/bl_ui/space_view3d_toolbar.py
===================================================================
--- branches/soc-2011-tomato/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2012-06-20 09:34:26 UTC (rev 48109)
+++ branches/soc-2011-tomato/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2012-06-20 10:03:02 UTC (rev 48110)
@@ -676,6 +676,8 @@
             row.prop(brush, "jitter", slider=True)
             row.prop(brush, "use_pressure_jitter", toggle=True, text="")
 
+            col.prop(brush, "vertex_tool", text="Blend")
+
         # Vertex Paint Mode #
         elif context.vertex_paint_object and brush:
             col = layout.column()
@@ -695,7 +697,9 @@
             #row.prop(brush, "jitter", slider=True)
             #row.prop(brush, "use_pressure_jitter", toggle=True, text="")
 
+            col.prop(brush, "vertex_tool", text="Blend")
 
+
 class VIEW3D_PT_tools_brush_texture(Panel, View3DPaintPanel):
     bl_label = "Texture"
     bl_options = {'DEFAULT_CLOSED'}

Modified: branches/soc-2011-tomato/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cpp
===================================================================
--- branches/soc-2011-tomato/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cpp	2012-06-20 09:34:26 UTC (rev 48109)
+++ branches/soc-2011-tomato/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cpp	2012-06-20 10:03:02 UTC (rev 48110)
@@ -72,19 +72,20 @@
 	float tc[4] = {0, 0, 0, 0};
 	const float v = sc * ((y + 0.5f) - cy) / cy;
 	const float u = sc * ((x + 0.5f) - cx) / cx;
+	const float uv_dot = u * u + v * v;
 	int sta = 0, mid = 0, end = 0;
 
-	if ((t = 1.f - kr4 * (u * u + v * v)) >= 0.f) {
+	if ((t = 1.f - kr4 * uv_dot) >= 0.f) {
 		d = 1.f / (1.f + sqrtf(t));
 		ln[0] = (u * d + 0.5f) * width - 0.5f, ln[1] = (v * d + 0.5f) * height - 0.5f;
 		sta = 1;
 	}
-	if ((t = 1.f - kg4 * (u * u + v * v)) >= 0.f) {
+	if ((t = 1.f - kg4 * uv_dot) >= 0.f) {
 		d = 1.f / (1.f + sqrtf(t));
 		ln[2] = (u * d + 0.5f) * width - 0.5f, ln[3] = (v * d + 0.5f) * height - 0.5f;
 		mid = 1;
 	}
-	if ((t = 1.f - kb4 * (u * u + v * v)) >= 0.f) {
+	if ((t = 1.f - kb4 * uv_dot) >= 0.f) {
 		d = 1.f / (1.f + sqrtf(t));
 		ln[4] = (u * d + 0.5f) * width - 0.5f, ln[5] = (v * d + 0.5f) * height - 0.5f;
 		end = 1;
@@ -103,10 +104,10 @@
 
 			for (z = 0; z < ds; ++z) {
 				const float tz = ((float)z + (jit ? BLI_frand() : 0.5f)) * sd;
-				t = 1.f - (kr4 + tz * drg) * (u * u + v * v);
+				t = 1.f - (kr4 + tz * drg) * uv_dot;
 				d = 1.f / (1.f + sqrtf(t));
-				const float nx = (u * d + 0.5f) * getWidth() - 0.5f;
-				const float ny = (v * d + 0.5f) * getHeight() - 0.5f;
+				const float nx = (u * d + 0.5f) * width - 0.5f;
+				const float ny = (v * d + 0.5f) * height - 0.5f;
 				buffer->readCubic(color, nx, ny);
 				tc[0] += (1.f - tz) * color[0], tc[1] += tz * color[1];
 				dr++, dg++;
@@ -121,10 +122,10 @@
 
 			for (z = 0; z < ds; ++z) {
 				const float tz = ((float)z + (jit ? BLI_frand() : 0.5f)) * sd;
-				t = 1.f - (kg4 + tz * dgb) * (u * u + v * v);
+				t = 1.f - (kg4 + tz * dgb) * uv_dot;
 				d = 1.f / (1.f + sqrtf(t));
-				const float nx = (u * d + 0.5f) * getWidth() - 0.5f;
-				const float ny = (v * d + 0.5f) * getHeight() - 0.5f;
+				const float nx = (u * d + 0.5f) * width - 0.5f;
+				const float ny = (v * d + 0.5f) * height - 0.5f;
 				buffer->readCubic(color, nx, ny);
 				tc[1] += (1.f - tz) * color[1], tc[2] += tz * color[2];
 				dg++, db++;


Property changes on: branches/soc-2011-tomato/source/blender/editors/interface/interface.c
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/ge_candy/source/blender/editors/interface/interface.c:45070-46163
/branches/ge_harmony/source/blender/editors/interface/interface.c:42255,42279-42282,42286,42302,42338,42349,42616,42620,42698-42699,42739,42753,42773-42774,42832,44568,44597-44598,44793-44794
/branches/soc-2011-cucumber/source/blender/editors/interface/interface.c:37517,38166-38167,38177,38179-38180,38187,38242,38384,38387,38403-38404,38407,38968,38970,38973,39045,40845,42997-42998,43439
/branches/vgroup_modifiers/source/blender/editors/interface/interface.c:38694-39989
/trunk/blender/source/blender/editors/interface/interface.c:36831-48105
   + /branches/ge_candy/source/blender/editors/interface/interface.c:45070-46163
/branches/ge_harmony/source/blender/editors/interface/interface.c:42255,42279-42282,42286,42302,42338,42349,42616,42620,42698-42699,42739,42753,42773-42774,42832,44568,44597-44598,44793-44794
/branches/soc-2011-cucumber/source/blender/editors/interface/interface.c:37517,38166-38167,38177,38179-38180,38187,38242,38384,38387,38403-38404,38407,38968,38970,38973,39045,40845,42997-42998,43439
/branches/vgroup_modifiers/source/blender/editors/interface/interface.c:38694-39989
/trunk/blender/source/blender/editors/interface/interface.c:36831-48109


Property changes on: branches/soc-2011-tomato/source/blender/editors/space_outliner
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/soc-2011-cucumber/source/blender/editors/space_outliner:38968,38970,38973,39045,40845
/branches/soc-2011-pepper/source/blender/editors/space_outliner:36831-38987
/trunk/blender/source/blender/editors/space_outliner:36831-48105
   + /branches/soc-2011-cucumber/source/blender/editors/space_outliner:38968,38970,38973,39045,40845
/branches/soc-2011-pepper/source/blender/editors/space_outliner:36831-38987
/trunk/blender/source/blender/editors/space_outliner:36831-48109

Modified: branches/soc-2011-tomato/source/blender/nodes/composite/nodes/node_composite_lensdist.c
===================================================================
--- branches/soc-2011-tomato/source/blender/nodes/composite/nodes/node_composite_lensdist.c	2012-06-20 09:34:26 UTC (rev 48109)
+++ branches/soc-2011-tomato/source/blender/nodes/composite/nodes/node_composite_lensdist.c	2012-06-20 10:03:02 UTC (rev 48110)
@@ -98,19 +98,20 @@
 				float d, t, ln[6] = {0, 0, 0, 0, 0, 0};
 				fRGB c1, tc = {0, 0, 0, 0};
 				const float u = sc*((x + 0.5f) - cx)/cx;
+				const float uv_dot = u * u + v * v;
 				int sta = 0, mid = 0, end = 0;
 				
-				if ((t = 1.f - kr*(u*u + v*v)) >= 0.f) {
+				if ((t = 1.f - kr*uv_dot) >= 0.f) {
 					d = 1.f/(1.f + sqrtf(t));
 					ln[0] = (u*d + 0.5f)*dst->x - 0.5f, ln[1] = (v*d + 0.5f)*dst->y - 0.5f;
 					sta = 1;
 				}
-				if ((t = 1.f - kg*(u*u + v*v)) >= 0.f) {
+				if ((t = 1.f - kg*uv_dot) >= 0.f) {
 					d = 1.f/(1.f + sqrtf(t));
 					ln[2] = (u*d + 0.5f)*dst->x - 0.5f, ln[3] = (v*d + 0.5f)*dst->y - 0.5f;
 					mid = 1;
 				}
-				if ((t = 1.f - kb*(u*u + v*v)) >= 0.f) {
+				if ((t = 1.f - kb*uv_dot) >= 0.f) {
 					d = 1.f/(1.f + sqrtf(t));
 					ln[4] = (u*d + 0.5f)*dst->x - 0.5f, ln[5] = (v*d + 0.5f)*dst->y - 0.5f;
 					end = 1;
@@ -125,7 +126,7 @@
 					
 					for (z=0; z<ds; ++z) {
 						const float tz = ((float)z + (jit ? BLI_frand() : 0.5f))*sd;
-						t = 1.f - (kr + tz*drg)*(u*u + v*v);
+						t = 1.f - (kr + tz*drg)*uv_dot;
 						d = 1.f / (1.f + sqrtf(t));
 						qd_getPixelLerp(src, (u*d + 0.5f)*dst->x - 0.5f, (v*d + 0.5f)*dst->y - 0.5f, c1);
 						if (src->type == CB_VAL) c1[1] = c1[2] = c1[0];
@@ -141,7 +142,7 @@
 						
 						for (z=0; z<ds; ++z) {
 							const float tz = ((float)z + (jit ? BLI_frand() : 0.5f))*sd;
-							t = 1.f - (kg + tz*dgb)*(u*u + v*v);
+							t = 1.f - (kg + tz*dgb)*uv_dot;
 							d = 1.f / (1.f + sqrtf(t));
 							qd_getPixelLerp(src, (u*d + 0.5f)*dst->x - 0.5f, (v*d + 0.5f)*dst->y - 0.5f, c1);
 							if (src->type == CB_VAL) c1[1] = c1[2] = c1[0];




More information about the Bf-blender-cvs mailing list