Cleanup: style

This commit is contained in:
Campbell Barton
2015-04-21 15:53:32 +10:00
parent f36e91ad0a
commit b82d571c85
5 changed files with 8 additions and 8 deletions

View File

@@ -93,8 +93,8 @@ shader node_math(
Value = Value1 > Value2;
else if (type == "Modulo")
Value = safe_modulo(Value1, Value2);
else if (type == "Absolute")
Value = fabs(Value1);
else if (type == "Absolute")
Value = fabs(Value1);
if (Clamp)
Value = clamp(Value, 0.0, 1.0);