[Bf-blender-cvs] [b674878f0db] soc-2020-fluid-tools: Minor formatting change

Sriharsha Kotcharlakot noreply at git.blender.org
Thu Jun 4 16:58:13 CEST 2020


Commit: b674878f0db3da6dac07514a0cf2203d78557dd2
Author: Sriharsha Kotcharlakot
Date:   Thu Jun 4 20:27:50 2020 +0530
Branches: soc-2020-fluid-tools
https://developer.blender.org/rBb674878f0db3da6dac07514a0cf2203d78557dd2

Minor formatting change

===================================================================

M	source/blender/blenlib/intern/math_color.c

===================================================================

diff --git a/source/blender/blenlib/intern/math_color.c b/source/blender/blenlib/intern/math_color.c
index fd33d508aa1..c1a8070118a 100644
--- a/source/blender/blenlib/intern/math_color.c
+++ b/source/blender/blenlib/intern/math_color.c
@@ -714,7 +714,7 @@ void blackbody_temperature_to_rgb_table(float *r_table, int width, float min, fl
 
 void phi_to_rgb(float *r_table, int width, float min, float max)
 {
-  for(int i = 0; i < width; i++) {
+  for (int i = 0; i < width; i++) {
     float value = min + (max - min) / (float)width * (float)i;
 
     float rgb[3];



More information about the Bf-blender-cvs mailing list