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-29fix [#33029] Applying modifier leaks memoryCampbell Barton
2012-11-28fix for minor annoyance - when extruding a circle there would always be one f...Campbell Barton
2012-11-28Copy face attributes when creating new faces in BMO_symmetrizeNicholas Bishop
2012-11-28use radians for 'spin' bmesh operator (since the rest of the py api uses radi...Campbell Barton
2012-11-28bmesh operator naming - use clearer names for args eg: (mat -> matrix, use_si...Campbell Barton
2012-11-27use clearer names for 'single' bmesh operator args & add '%e' to BMO_op_vinit...Campbell Barton
2012-11-27py/bmesh api - add support for single item buffers (odd feature but used quit...Campbell Barton
2012-11-27code cleanup: bmesh operator comments, readying for doc-generation.Campbell Barton
2012-11-27fix for asserts added in own recent commit with more strict type-checkingCampbell Barton
2012-11-27bmesh/py operator api:Campbell Barton
2012-11-27fix/workaround [#33281] script goes into not responding Campbell Barton
2012-11-26style cleanupCampbell Barton
2012-11-26Fix #33285: loop cut is not supposed to cut through triangles/ngons, but itBrecht Van Lommel
2012-11-26use more rigid type checking for bmesh slot subtypes.Campbell Barton
2012-11-23fix for inset getting bad UV's/VCols at face boundaries.Campbell Barton
2012-11-22fix own error - remove doubles slot name.Campbell Barton
2012-11-20bmesh operator api:Campbell Barton
2012-11-20code cleanup: make bmesh operator names more consistant since python has acce...Campbell Barton
2012-11-20bmesh operator api edits, add macros and NULL the buffer if BMO_slot_buffer_a...Campbell Barton
2012-11-20fix for crash in wireframe tool with verts that only have one boundary edge (...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-18bmesh: lazy initialize bmesh tool flag pool, has the advantage that modifiers...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