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-22fix own error - remove doubles slot name.Campbell Barton
2012-11-22Fix: Normal maps and triangulate modifier will give incorrect result onAntony Riakiotakis
2012-11-21bevel: fix bug where constructed where parallel testHoward Trickey
2012-11-21enable edge draw by default for new edges,Campbell Barton
2012-11-20code cleanup: comment unused members of bmesh operator slots and some osl sty...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-20fix for changes in own recent commit: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-19Merged changes in the trunk up to revision 52340.Tamito Kajiyama
2012-11-18bmesh: lazy initialize bmesh tool flag pool, has the advantage that modifiers...Campbell Barton
2012-11-18bmesh: move internal API flags out of BMFlagLayer, into BMHeader which was be...Campbell Barton
2012-11-18bevel now only takes manifold edges (so it doesnt need to check for them)Campbell Barton
2012-11-18bmesh function was still using bmesh operator flags, use edge tags instead.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-18move decimator into tools/ dirCampbell Barton
2012-11-18style cleanup: comments & spellingCampbell 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-14Merged changes in the trunk up to revision 52191.Tamito Kajiyama
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-12update to python api `Gotcha` docs to reflect changes to the api. also add a ...Campbell Barton