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
2018-10-10BMesh: simple bmesh -> mesh for evaluationCampbell Barton
Copied from CDDM_from_bmesh, the modifier stack doesn't need to handle shape keys, vertex parents or selection history (needed for mode switching).
2018-10-09Merge branch 'master' into blender2.8Campbell Barton
2018-10-08Fix T57103: Subdivide smooth results in NAN vertsCampbell Barton
2018-09-28Cleanup: Remove bmo_similar.c and small renamingDalai Felinto
2018-09-26Merge branch 'master' into blender2.8Campbell Barton
2018-09-26BMesh: spin option to merge first/lastCampbell Barton
For 360d revolutions this is almost always whats intended, enable by default.
2018-09-25Merge branch 'master' into blender2.8Campbell Barton
2018-09-25BMesh: option to flip normals for extrude/spinCampbell Barton
2018-09-21Select Similar: Cleanup - WITH_FREESYTLEDalai Felinto
2018-09-19BLI_utildefines: rename pointer conversion macrosCampbell Barton
Terms get/set don't make much sense when casting values. Name macros so the conversion is obvious, use common prefix for easier completion. - GET_INT_FROM_POINTER -> POINTER_AS_INT - SET_INT_IN_POINTER -> POINTER_FROM_INT - GET_UINT_FROM_POINTER -> POINTER_AS_UINT - SET_UINT_IN_POINTER -> POINTER_FROM_UINT
2018-09-19Merge branch 'master' into blender2.8Campbell Barton
2018-09-02Cleanup: comment blocksCampbell Barton
2018-09-02Cleanup: comment blocksCampbell Barton
2018-08-29Cleanup: use simple early exit for common caseCampbell Barton
Caused MSVC warning, may as well do simple check.
2018-08-27Implement BMesh Operator string enumerators and docs generation.Andrew Hale
Partial implementation of T56496 for review. Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D3635
2018-08-20Merge branch 'master' into blender2.8Campbell Barton
2018-08-20Fix BMesh edge_bisect, edge_percent being ignoredAndrew Hale
Also fix float/int/bool access methods
2018-08-14BMesh: define suptype for bevel normals.outCampbell Barton
Not doing this broke doc building.
2018-08-13Fix bevel problem for vertex-only cube corners.Howard Trickey
Was introduced by code from gsoc branch that does better job on cube corners, but shouldn't have applied to vertex-only case.
2018-08-10Cleanup: styleCampbell Barton
2018-08-09Quiet warnings in bmesh_bevel.c.Howard Trickey
2018-08-09Merge branch 'soc-2018-bevel' into blender2.8Rohan Rathi
2018-08-08Cleanup: trailing spaceCampbell Barton
2018-08-05Fix indentation, spacing and added commentsRohan Rathi
2018-08-04Added comments to functionality in main bevel codeRohan Rathi
2018-08-04Added comments to seam and sharp len, removed unused varRohan Rathi
2018-08-04Fixed hnmode not being passed with bevel toolRohan Rathi
2018-08-04Added comments on hn_mode, BMOps on bevelRohan Rathi
2018-08-04Removed redundant comment in BMeshRohan Rathi
2018-08-04Merge branch 'master' into blender2.8Bastien Montagne
2018-08-04Fix T56222: Bevel Modifier bug (uninitialized value).Bastien Montagne
2018-07-21Merge branch 'blender2.8' into soc-2018-bevelRohan Rathi
2018-07-19Code cleanup and fixesRohan Rathi
2018-07-17Fix weld incoherent normals with weld operationRohan Rathi
2018-07-15WM: rename manipulator to gizmo internallyCampbell Barton
2018-07-12Fixed shading errors with normals and added proper weightingRohan Rathi
to harden normals to make it consistent with wn modifier
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12Cleanup: header guardsCampbell Barton
2018-07-09Fixed artifacts in bevel with high profile and segmentsRohan Rathi
2018-07-03cleanup of extend edge data and fixed minor errorsRohan Rathi
2018-07-02Merge branch 'blender2.8' into soc-2018-bevelRohan Rathi
2018-07-02Refactored bevel normal editing functionality.Rohan Rathi
2018-07-02Minor cleanup and fixed normal updating erasing entire meshRohan Rathi
2018-07-29Cleanup of fix_normal_shadingRohan Rathi
Fixed the edge crease that was present and also made significant performance improvements.
2018-06-30Merge branch 'master' into blender2.8Campbell Barton
2018-06-30Cleanup: rename bmesh_queries -> bmesh_queryCampbell Barton
Other files with the same purpose already used 'query'.
2018-06-29Cleanup: remove another bunch of DM usages, includes etc.Bastien Montagne
2018-06-29Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-27Patch to fix shading continuity.Rohan Rathi
Added it as extension to harden. Tried out different methods to fix normals, Though as with width and segments changes shape, orientation of new polys a non-smooth method of fix was not possible. Current method aggregates vertex normals into a smooth fan without affecting edge shading. Still need to fix the crease at new vertex edges