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 (Expand)Author
2012-11-20code cleanup: make bmesh operator names more consistant since python has acce...Campbell Barton
2012-11-19use input and output slots for bmesh operators, needed for the python api to ...Campbell Barton
2012-11-19improvements to bevelCampbell Barton
2012-11-19bmesh: BM_verts_in_face was using bmesh operator flag which is no longer ensu...Campbell Barton
2012-11-18bevel now only takes manifold edges (so it doesnt need to check for them)Campbell Barton
2012-11-18finish moving bevel code out of the operator dir (it works again)Campbell Barton
2012-11-18moving bevel to tools dir as-is to keep svn history (breaks build, will fix n...Campbell Barton
2012-11-17use quad-strip for filling even when no segments are being added, this gives ...Campbell Barton
2012-11-17more straightforward way to implement quad-strip face filling suggested by Ho...Campbell Barton
2012-11-16rework the bevel quad strip logic to work with ngons correctly, previously it...Campbell Barton
2012-11-16fix for own bug in quad-stip fill method, quad strips were skewed.Campbell Barton
2012-11-16more minor improvements to bevel use of math functionsCampbell Barton
2012-11-16code cleanup: remove unneeded normalize (face normal), and unneeded call to l...Campbell Barton
2012-11-16bevel: save some memory by aligning struct members.Campbell Barton
2012-11-16wip - alternate bevel curve calculation (still disabled)Campbell Barton
2012-11-16bevel: wip ifdef'd code to test an alternative method of placing corner verti...Campbell Barton
2012-11-16code cleanup: some renaming to avoid confusion.Campbell Barton
2012-11-15code cleanup: move local math functions into math_geom.c, math_vector.c, no f...Campbell Barton
2012-11-15fix for deleting lines hanging the text editor when no markers are used, pres...Campbell Barton
2012-11-15Fix 'polygon eating' problem in bevel (bug #33141)Howard Trickey
2012-11-14use memarena for bevel allocsCampbell Barton
2012-11-14use ghash for bevel verts, saves list lookups when getting a BMVert's BevVertCampbell Barton
2012-11-14speedup bevel by tagging verts and edges to bevel, this avoids a loop over al...Campbell Barton
2012-11-14remove ifdef'd bevel code, current bevel works better then the previous code.Campbell Barton
2012-11-12add simple quad-strip filling to bevel, use to bevel edges when 2 bevel-edges...Campbell Barton
2012-11-12fan filling didnt always work well, now only apply this when its going to wor...Campbell Barton
2012-11-12change bevel do/while loops to step the pointer in the while check, no functi...Campbell Barton
2012-11-12bevel fan fill edges meeting non selected geometry rather then making ngons w...Campbell Barton
2012-11-12code cleanup: spelling,Campbell Barton
2012-11-12BM_iter_as_arrayN() can now take an optional existing array argument, useful ...Campbell Barton
2012-11-12bmesh bevel todo: don't loop through all faces to find faces connected to a v...Campbell Barton
2012-11-12replace BM_edge_face_count with BM_edge_is_manifold/BM_edge_is_wire/BM_edge_i...Campbell Barton
2012-11-12style cleanupCampbell Barton
2012-11-12Bevel: several bug fixes.Howard Trickey
2012-11-09Bevel: use library plane/line intersection instead of custom one.Howard Trickey
2012-11-09add fallbacks for BM_vert_calc_shell_factor() and BM_vert_calc_mean_tagged_ed...Campbell Barton
2012-11-09code cleanup: move shrinkwrap's benchmark macro into PIL_time.h & some minor ...Campbell Barton
2012-11-09code cleanup: double promotion warnings with new bevel code & wrong use of NU...Campbell Barton
2012-11-08style cleanupCampbell Barton
2012-11-08Merge gsoc Bevel (with rounding) into trunk.Howard Trickey
2012-10-23rename api functions...Campbell Barton
2012-10-15code cleanup: define sizes of vectors for function args and use C style commentsCampbell Barton
2012-10-01add compiler hints that failing to create a bmesh face is unlikely.Campbell Barton
2012-07-21add option so operators can be called with a flag, currently the only flag is...Campbell Barton
2012-07-17code cleanup: spellingCampbell Barton
2012-06-30rename bmesh ops since they are exposed in an api now.Campbell Barton
2012-05-03style cleanup: formatting and some float/double promotionCampbell Barton
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ...Campbell Barton
2012-04-19code cleanup: remove unused BMesh args.Campbell Barton
2012-04-19remove BM_ITER, BM_ITER_INDEX macros, use ELEM or MESH variants only (the mac...Campbell Barton