Sivu saatavilla vain englanninkielisenä.
MiikaHweb - Blender Git Statistics v1.06
Blender Git Statistics -> Branches -> soc-2017-normal-tools
"Soc-2017-normal-tools" branch
Total commits : 214
Total committers : 9
First Commit : June 1, 2017
Latest Commit : April 12, 2018
Commits by Month
Date | Number of Commits | |
---|---|---|
April, 2018 | 5 | |
March, 2018 | 28 | |
February, 2018 | 24 | |
January, 2018 | 0 | |
December, 2017 | 3 | |
November, 2017 | 13 | |
October, 2017 | 85 | |
September, 2017 | 4 | |
August, 2017 | 19 | |
July, 2017 | 19 | |
June, 2017 | 14 |
Committers
Author | Number of Commits |
---|---|
Bastien Montagne | 83 |
Rohan Rathi | 60 |
Campbell Barton | 35 |
Brecht Van Lommel | 19 |
Sergey Sharybin | 11 |
Alexander Gavrilov | 2 |
Ray molenkamp | 2 |
Mathieu Menuet | 1 |
Aaron Carlisle | 1 |
Popular Files
Filename | Total Edits |
---|---|
editmesh_tools.c | 47 |
bmesh_mesh.c | 37 |
MOD_weighted_normal.c | 32 |
transform.c | 22 |
space_view3d_toolbar.py | 17 |
bmesh_class.h | 15 |
bmesh_mesh.h | 13 |
rna_modifier.c | 12 |
paint_vertex.c | 10 |
sculpt.c | 10 |
Latest commits
April 12, 2018, 08:30 (GMT) |
Fix second issue introduced in refactoring/cleanup of weighted normals. 'degenerated too short normals' check was probably a bit too aggressive, moved it back to more common 1e-6 value. |
April 11, 2018, 15:27 (GMT) |
Fix weighted normals modifier sometimes affecting actual mesh. Same issue & same fix as with edit normals modifier some times ago... |
April 11, 2018, 15:08 (GMT) |
Merge branch 'master' into soc-2017-normal-tools |
April 5, 2018, 07:16 (GMT) |
Create README.md |
April 5, 2018, 07:01 (GMT) |
Changed rotation calculation in rotate_normal |
March 31, 2018, 14:13 (GMT) |
Merge branch 'master' into soc-2017-normal-tools |
March 13, 2018, 09:25 (GMT) |
Moar cleanup. |
March 13, 2018, 09:00 (GMT) |
Cleanup some leftover after recent refactor. |
March 12, 2018, 16:38 (GMT) |
Merge branch 'master' into soc-2017-normal-tools |
March 12, 2018, 16:22 (GMT) |
Heavy refactor of weighted normals code, especially 'keep sharp' part. Before, 'keep sharp' was bsically: * Overwriting everything just computed by 'single nor per vertex' code, leading to a nice share of computations being tossed to nowhere. * Re-implementing most of core clnor computaion code, only skipping all 'sharp edge' cases but the one defined by shapr edge tags. This was not only bad for code maintenance and (reasonable) simplicity, it was also introducing inconsistencies in how we define sharp edges, since everwhere else in code we take into account sharp edge tag, flat face tag, and 'smooth threshold' value (aka split angle) of mesh. At first I though 'keep sharp' would need its own totally separated code path, but thanks to some data structure tricks, it was possible to merge most of both cases into single code. So this commit: * Heavily factorizes and simplifies code, especially the 'keep sharp' case. * Makes use of clnor spaces as generated by core BKE code to define 'smooth fans' that should have the same weighted normals, just like anywhere else in Blender. Note that since code is now using same functions in all cases, it also naturally brings back vgroup support in keep_sharp case. Also, this has been a fairly involved change, basic testing seems to be OK, but more would be welcomed here. :) |
March 12, 2018, 16:21 (GMT) |
Add clnor_spaces counter and opaque userdata pointer to clnor spaces. Those will help with weighted normals modifier incomming refactor. |
March 11, 2018, 10:39 (GMT) |
Merge branch 'master' into soc-2017-normal-tools |
March 11, 2018, 10:38 (GMT) |
Partially revert "Fixed vertex groups not respected with keep sharp in modifier." This reverts some changes from commit a7a4beecb208d12a00d550e3ebf4e2a37730fa6b. |
March 11, 2018, 09:23 (GMT) |
Fixed vertex groups not respected with keep sharp in modifier. Also fixed some other trivial issues. |
March 9, 2018, 17:45 (GMT) |
Change 'face strength' values. WARNING! this will break files saved with this branch and using face strength feature (no crash or data corruption, but face strength values will become invalid and will produce weird results)! Rationals for this change are: * Having strength values in natural order simplifies existing code already, not to mention any future potential addition to strengthes. * Now, code will work as-is, even if we decide to add more stength values in the future. |
March 9, 2018, 17:32 (GMT) |
Cleanup: use MEM_[cm]alloc_arrayN as needed, instead of MEM_[cm]allocN. New memory allocator was added a few months ago as an attempt to make our memory management more secure, still have to go over rest of this patch's code for same thing. ;) |
March 9, 2018, 17:21 (GMT) |
Serious refactor, adding common data struct, some factorizing... We now pass most common parameters to processing functions using a single struct, this is much cleaner. Also, factorized code aggregating poly nors into vertex nors in new aggregate_vertex_normal function, and optimized expensive powf calls (exponential inverse weight...) by computing once and caching most common values (since weight is static all-over processing, and nearly all vertices will only have a few faces or loops using them...). Note that am still very unhapy with 'keep sharp edges' case, that one seems to copy a lot of code we already have in BKE_mesh_evaluate, and (if I followed code correctly) recompute everything, essentially ditching the whole first computations of weighted normals! |
March 9, 2018, 14:22 (GMT) |
Fix broken 'is vertex in vgroup' check. Also, better to avoid binary XOR on booleans, you never know how those are actually stored internally (or how they were generated), and may get surprising results depending on compiler etc., though with modern compilers I?d expect this to be safe now? |
March 9, 2018, 14:03 (GMT) |
More cleanup and optimizations. Style and naming, arg positons (all loops data together, etc.), const values and args, and so on... Also, avoid allocating unused memory, avoid extra loops when possible, etc. |
March 9, 2018, 11:54 (GMT) |
Minor cleanup and silplification/optimizations... |
MiikaHweb - Blender Git Statistics v1.06