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
2019-04-29Cleanup: comments (long lines) in bmeshCampbell Barton
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-03-27Cleanup: style, use braces for bmeshCampbell Barton
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-06Cleanup: remove redundant doxygen \file argumentCampbell Barton
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2017-10-29BMesh: use heap update for dissolve-decimateCampbell Barton
2016-11-12BMesh: Minor improvement to face-joinCampbell Barton
Pass in loops instead of edge & faces. Nearly all callers have the loop-pairs to pass in.
2016-07-01BMesh: make toolflags optionalCampbell Barton
Saves 8 bytes per vert/edge/face. Gives overall ~20-25% memory saving for dyntopo sculpting and modifiers that use BMesh.
2016-05-06Cleanup: warningsCampbell Barton
Values set but not used
2016-04-28BMesh: limited-dissolve, add check for wire edgesCampbell Barton
Recent degenerate check crashed on chains of wire edges
2016-04-20Minor optimization for limited-dissolveCampbell Barton
Use dot product instead of angle.
2016-04-19Minor edits to last commitCampbell Barton
Avoid redundant tests
2016-04-19Fix T47998: Limited dissolve fails /w holesCampbell Barton
Holes with flat surfaces could have their edges dissolved causing degenerate faces. Now check that collapsing a vertices isn't creating self-overlapping faces.
2015-05-17Cleanup: indentationCampbell Barton
2015-05-16BMesh: add UV delimit for select-linked, dissolveCampbell Barton
2015-05-16BMesh: add sharp edge delimiterCampbell Barton
2015-05-05Math Lib: rename fill_*, to copy_*Campbell Barton
matching convention for fixed length api, eg: copy_v3_fl
2015-04-25Cleanup: use 8 space indent for multi-line argsCampbell Barton
2014-06-27BMesh: add BM_vert_is_edge_pair(), faster then checking ↵Campbell Barton
(BM_vert_edge_count(v) == 2)
2014-06-27BMesh: add ability not to delete vertex when collapsingCampbell Barton
2013-08-17style cleanupCampbell Barton
2013-08-04bmesh: improve limited dissolve resultCampbell Barton
iteratively dissolve the best edge/vert, updating the heap as the dissolve runs.
2013-07-25correct problem with limited-dissolve not leaving the selection correctly ↵Campbell Barton
(caused by BM_elem_attrs_copy no longer dealing with selection)
2013-06-03fix [#35311] Planar Decimate / Limited Dissolve fails to merge some adjacent ↵Campbell Barton
faces optionally limit by face flipping, also added support to delimit by material and edge crease.
2013-03-12code cleanup: quiet struct gcc warnings, also use more conventional names ↵Campbell Barton
for bmesh dissolve.
2013-03-09code cleanup: make bmesh var names more consistentCampbell Barton
2013-01-14use booleans for bmesh api.Campbell Barton
2012-11-26code cleanup: doxy comment corrections and correct own typo animation player ↵Campbell Barton
docs.
2012-11-18finish moving bevel code out of the operator dir (it works again)Campbell Barton
2012-11-18move decimator into tools/ dirCampbell Barton