Blender Git Loki
Git Commits -> Revision a7b44c8
Revision a7b44c8 by Dalai Felinto (master) October 29, 2013, 02:42 (GMT) |
Triangulate Modifier: using different ngon and quad methods Quads: Beauty, Fixed, Fixed Alternate, Shortest Diagonal Ngons: Beauty, Scanfill * Shortest Diagonal is the default method in the modifier (popular elsewhere), but beauty is the default in Ctrl+T). * Remove the need for output slot and beauty operator to be called after Clt+T Patch with collaborations and reviewed by Campbell Barton |
Commit Details:
Full Hash: a7b44c82e5b90e83a588fabb22fda5ac41891bdf
SVN Revision: 60983
Parent Commit: 427844c
Lines Changed: +188, -48
17 Modified Paths:
/release/scripts/startup/bl_ui/properties_data_modifier.py (+8, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+20, -0) (Diff)
/source/blender/bmesh/intern/bmesh_opdefines.c (+2, -1) (Diff)
/source/blender/bmesh/intern/bmesh_polygon.c (+64, -2) (Diff)
/source/blender/bmesh/intern/bmesh_polygon.h (+2, -1) (Diff)
/source/blender/bmesh/operators/bmo_triangulate.c (+4, -2) (Diff)
/source/blender/bmesh/tools/bmesh_beautify.c (+16, -11) (Diff)
/source/blender/bmesh/tools/bmesh_beautify.h (+4, -0) (Diff)
/source/blender/bmesh/tools/bmesh_triangulate.c (+7, -5) (Diff)
/source/blender/bmesh/tools/bmesh_triangulate.h (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+5, -13) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+5, -2) (Diff)
/source/blender/editors/sculpt_paint/sculpt.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+17, -1) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+24, -3) (Diff)
/source/blender/makesrna/RNA_enum_types.h (+3, -0) (Diff)
/source/blender/modifiers/intern/MOD_triangulate.c (+5, -4) (Diff)
/source/blender/blenloader/intern/readfile.c (+20, -0) (Diff)
/source/blender/bmesh/intern/bmesh_opdefines.c (+2, -1) (Diff)
/source/blender/bmesh/intern/bmesh_polygon.c (+64, -2) (Diff)
/source/blender/bmesh/intern/bmesh_polygon.h (+2, -1) (Diff)
/source/blender/bmesh/operators/bmo_triangulate.c (+4, -2) (Diff)
/source/blender/bmesh/tools/bmesh_beautify.c (+16, -11) (Diff)
/source/blender/bmesh/tools/bmesh_beautify.h (+4, -0) (Diff)
/source/blender/bmesh/tools/bmesh_triangulate.c (+7, -5) (Diff)
/source/blender/bmesh/tools/bmesh_triangulate.h (+1, -1) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+5, -13) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+5, -2) (Diff)
/source/blender/editors/sculpt_paint/sculpt.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+17, -1) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+24, -3) (Diff)
/source/blender/makesrna/RNA_enum_types.h (+3, -0) (Diff)
/source/blender/modifiers/intern/MOD_triangulate.c (+5, -4) (Diff)