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
2018-08-10Cleanup: styleCampbell Barton
2018-08-05Fix indentation, spacing and added commentsRohan Rathi
2018-08-04Fixed hnmode not being passed with bevel toolRohan Rathi
2018-06-11Added ability to harden normals.Rohan Rathi
2018-06-04Added UI support for seams and sharp edges and cleanupRohan Rathi
2017-06-07Bevel Op (internal and API) now returns new edges and verts as well asHoward Trickey
2015-07-05Add 'loop slide' option to bevel. See T45260Howard Trickey
2014-10-08Fix T42145: EditMesh Bevel tools had no clamping option.Bastien Montagne
2014-07-17Fix T34664: bevel face material can be set in tool and modifier.Howard Trickey
2014-01-08Add profile control parameter to Bevel.Howard Trickey
2013-11-10Added options for how bevel amount is measured.Howard Trickey
2013-08-23move bmesh tools into their own include,Campbell Barton
2013-03-30code comments: bmesh operator doxy header descriptions.Campbell Barton
2013-03-13Fix bevel modifier bug #34611, limit bevel amount needed.Howard Trickey
2013-02-21Enable new bevel tool code in bevel modifier.Howard Trickey
2013-01-14use booleans for bmesh api.Campbell Barton
2012-12-28Add 'vertex_only' option to bevel tool.Howard Trickey
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