Blender Git Loki
Git Commits -> Revision 491e749
Revision 491e749 by Lukas Toenne (master) January 20, 2015, 08:30 (GMT) |
Basic solver result feedback from the mass-spring (cloth/hair) solver. This returns a general status (success/no-convergence/other) along with basic statistics (min/max/average) for the error value and the number of iterations. It allows some general estimation of the simulation quality and detection of critical settings that could become a problem. Better visualization and extended feedback can follow later. |
Commit Details:
Full Hash: 491e7493c7f35a0b2d03a9fc6e934e5868c88b10
Parent Commit: 00bb836
Lines Changed: +176, -9
12 Modified Paths:
/release/scripts/startup/bl_ui/properties_particle.py (+19, -0) (Diff)
/source/blender/blenkernel/BKE_cloth.h (+8, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+1, -0) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+2, -0) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_cloth.c (+61, -0) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+5, -0) (Diff)
/source/blender/modifiers/intern/MOD_cloth.c (+4, -0) (Diff)
/source/blender/physics/BPH_mass_spring.h (+9, -0) (Diff)
/source/blender/physics/intern/BPH_mass_spring.cpp (+47, -1) (Diff)
/source/blender/physics/intern/implicit.h (+8, -1) (Diff)
/source/blender/physics/intern/implicit_blender.c (+11, -7) (Diff)
/source/blender/blenkernel/BKE_cloth.h (+8, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+1, -0) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+2, -0) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_cloth.c (+61, -0) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+5, -0) (Diff)
/source/blender/modifiers/intern/MOD_cloth.c (+4, -0) (Diff)
/source/blender/physics/BPH_mass_spring.h (+9, -0) (Diff)
/source/blender/physics/intern/BPH_mass_spring.cpp (+47, -1) (Diff)
/source/blender/physics/intern/implicit.h (+8, -1) (Diff)
/source/blender/physics/intern/implicit_blender.c (+11, -7) (Diff)