[Bf-committers] Improved Loop Cut: 50% Hard Cut Patch

Robert Tiess bf-committers@blender.org
Wed, 18 Feb 2004 00:55:57 -0500


I miss the old loop cut feature in that it was very fast and efficient 
at making 50% cuts.
The current variable cut is very useful, but the 50% cut helped me more 
rapidly create
certain models.  I added this back in through the simple patch code 
below, where a
user holds the SHIFT KEY while in loop cut mode for a quick clean 50% cut.

Thanks for considering this proposal.

Robert


Index: source/blender/src/editmesh.c
===================================================================
RCS file: /cvsroot/bf-blender/blender/source/blender/src/editmesh.c,v
retrieving revision 1.72
diff -r1.72 editmesh.c
2995a2996,2998
 >         if (G.qual & LR_SHIFTKEY)
 >             percentcut = 0.50;        
 >