Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRohan Rathi <rohanrathi08@gmail.com>2018-07-09 19:25:08 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-07-09 19:25:08 +0300
commit13741792abdaa2ea4f65d26988d40cb9483f0450 (patch)
treee03fac8e576749da8d0523aacb3431de1de8c363 /source/blender/bmesh
parentb360c9d7f9d1fbb85b6cb71109da39731e3870c6 (diff)
Fixed artifacts in bevel with high profile and segments
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/tools/bmesh_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 0a8ff3546be..694581bfab2 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -5619,7 +5619,7 @@ void BM_mesh_bevel(
bp.hnmode = hnmode;
bp.faceHash = NULL;
- if (profile >= 0.999f) { /* r ~ 692, so PRO_SQUARE_R is 1e4 */
+ if (profile >= 0.950f) { /* r ~ 692, so PRO_SQUARE_R is 1e4 */
bp.pro_super_r = PRO_SQUARE_R;
}