From 5083e0737f6413c63ab49b82735333534181d9b4 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sun, 9 Dec 2012 23:19:46 +0000 Subject: All angle properties were switched from degrees to radians (using PROP_ANGLE RNA subtype), since Freestyle internally use angles in radians. A patch set by Bastien Montagne (many thanks!) NOTICE FOR BRANCH USERS: This commit may break line drawing settings of already saved Freestyle files. All angles are now treated as radians instead of degrees, so collections of angle values might be necessary in order to recover previous visual results. Affected properties are: - Crease Angle in the edge detection options - Min 2D Angle in the 'Splitting' section of a line style - Max 2D Angle in the 'Splitting' section of a line style - 'orientation' parameter of the Calligraphy thickness modifier - 'angle' parameter of the PerlinNoise1D geometry modifier - 'angle' parameter of the PerlinNoise2D geometry modifier - 'angle' parameter of the 2DTransform geometry modifier --- source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle') diff --git a/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp b/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp index b5e67597caa..e432815a30f 100644 --- a/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp +++ b/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp @@ -351,7 +351,7 @@ extern "C" { controller->setSuggestiveContourKrDerivativeEpsilon( DEFAULT_DKR_EPSILON ); } controller->setFaceSmoothness( (config->flags & FREESTYLE_FACE_SMOOTHNESS_FLAG) ? true : false); - controller->setCreaseAngle( config->crease_angle ); + controller->setCreaseAngle( RAD2DEGF(config->crease_angle) ); controller->setVisibilityAlgo( (config->flags & FREESTYLE_CULLING) ? FREESTYLE_ALGO_CULLED_ADAPTIVE_CUMULATIVE : FREESTYLE_ALGO_ADAPTIVE_CUMULATIVE ); -- cgit v1.2.3