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-08-26Refactor to defer building Plane for Faces until later.Howard Trickey
This is a precursor to a big speed optimization in the "finding clusters" code. Right now there is no speedup, maybe even a bit of a slowdown, but following commits should lead to nice speed increases.
2020-08-22Addressed comments of reviewers on D8623.Howard Trickey
Almost all changes asked for by Campbell and Jacques have been addressed. The clang-tidy fixes will happen in the next commit.
2020-08-21Rename some classes at the suggestion of reviewers.Howard Trickey
Mesh -> IMesh; MArena -> IMeshArena Remove type abbreviations Vertp and Facep.
2020-08-21Use an enum type for solver in boolean modifier.Howard Trickey
This matches what was done in a previous commit for the tool. It makes it easier to associate a tooltip with each choice. For this branch, I have the default solver be the Exact one; when we merge to master, we will have to decide the best default. Make format caught a coouple other files, sorr for not doing those earlier.
2020-08-21Renamed boolean to meah_boolean in BLI file names.Howard Trickey