Cleanup: style

This commit is contained in:
Campbell Barton 2015-07-13 03:48:08 +10:00
parent feffbe974b
commit 1b297567c0
2 changed files with 10 additions and 10 deletions

View File

@ -1174,12 +1174,12 @@ LineStyleModifier *BKE_linestyle_geometry_modifier_add(FreestyleLineStyle *lines
p->pivot_y = 0.0f;
break;
}
case LS_MODIFIER_SIMPLIFICATION:
{
LineStyleGeometryModifier_Simplification *p = (LineStyleGeometryModifier_Simplification *)m;
p->tolerance = 0.1f;
break;
}
case LS_MODIFIER_SIMPLIFICATION:
{
LineStyleGeometryModifier_Simplification *p = (LineStyleGeometryModifier_Simplification *)m;
p->tolerance = 0.1f;
break;
}
default:
return NULL; /* unknown modifier type */
}
@ -1429,7 +1429,7 @@ char *BKE_linestyle_path_to_color_ramp(FreestyleLineStyle *linestyle, ColorBand
found = true;
break;
case LS_MODIFIER_CREASE_ANGLE:
if (color_ramp == ((LineStyleColorModifier_CreaseAngle*)m)->color_ramp)
if (color_ramp == ((LineStyleColorModifier_CreaseAngle *)m)->color_ramp)
found = true;
break;
case LS_MODIFIER_CURVATURE_3D:

View File

@ -866,7 +866,7 @@ static void rna_def_linestyle_modifiers(BlenderRNA *brna)
srna = RNA_def_struct(brna, "LineStyleColorModifier_Curvature_3D", "LineStyleColorModifier");
RNA_def_struct_ui_text(srna, "Curvature 3D",
"Change line color based on the radial curvature of 3D mesh surfaces");
"Change line color based on the radial curvature of 3D mesh surfaces");
rna_def_color_modifier(srna);
rna_def_modifier_color_ramp_common(srna, false);
@ -945,7 +945,7 @@ static void rna_def_linestyle_modifiers(BlenderRNA *brna)
srna = RNA_def_struct(brna, "LineStyleAlphaModifier_CreaseAngle", "LineStyleAlphaModifier");
RNA_def_struct_ui_text(srna, "Crease Angle",
"Alpha transparency based on the angle between two adjacent faces");
"Alpha transparency based on the angle between two adjacent faces");
rna_def_alpha_modifier(srna);
rna_def_modifier_curve_common(srna, false, false);
@ -1079,7 +1079,7 @@ static void rna_def_linestyle_modifiers(BlenderRNA *brna)
srna = RNA_def_struct(brna, "LineStyleThicknessModifier_Curvature_3D", "LineStyleThicknessModifier");
RNA_def_struct_ui_text(srna, "Curvature 3D",
"Line thickness based on the radial curvature of 3D mesh surfaces");
"Line thickness based on the radial curvature of 3D mesh surfaces");
rna_def_thickness_modifier(srna);
rna_def_modifier_curve_common(srna, false, false);