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
AgeCommit message (Collapse)Author
2020-11-01Fix new boolean performance bug.Howard Trickey
The code that decided to use a faster double version of plane side testing forgot to take an absolute value, so half the time the exact code was being used when it was unnecessary.
2020-09-05New boolean: Fix second example in T79404.Howard Trickey
The code to detect non-trivial coplanar intersection sometimes falsely said there wasn't one. This caused some coplanar intersections to be missed. Also added a test for this case.
2020-08-30New boolean: silence an "unused" warning.Howard Trickey
Previous commit stopped using some functions. Since I may need them again for future performance tuning, these are just ifdef'd out for now.
2020-08-30New boolean: another performance improvement.Howard Trickey
Instead of calculating exact normals for all faces, just do it for those that potentially intersect. A big improvement for dense meshes that only intersect in relatively few places.
2020-08-30New Boolean: performance improvement.Howard Trickey
Avoided cost of searching for coplanar clusters in many cases.
2020-08-29New boolean: fixed a bug in coplanar intersect.Howard Trickey
The code that found coplanar clusters was not updating a bounding box. Also, code that was detecting non-trivial coplanar intersects was slightly wrong, but that would not have caused any functional problems.
2020-08-29Clang Tidy: Fix readability-delete-null-pointer warningHans Goudey
2020-08-28Merge newboolean branch into master.Howard Trickey
This is for design task T67744, Boolean Redesign. It adds a choice of solver to the Boolean modifier and the Intersect (Boolean) and Intersect (Knife) tools. The 'Fast' choice is the current Bmesh boolean. The new 'Exact' choice is a more advanced algorithm that supports overlapping geometry and uses more robust calculations, but is slower than the Fast choice. The default with this commit is set to 'Exact'. We can decide before the 2.91 release whether or not this is the right choice, but this choice now will get us more testing and feedback on the new code.