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
2013-11-18BMesh Refactor: BKE_bmbvh_new can now be created without an EditMesh.Walid Shouman
2013-10-31code cleanup: spellingCampbell Barton
2013-10-28move bmesh array lookup data and utility functions from editmesh into bmesh,Campbell Barton
2013-10-22style cleanupCampbell Barton
2013-10-17Fix #37109: missing cycles texture display in edit mode.Brecht Van Lommel
2013-08-30Some knife fixes. Avoids duplicating verts; better handling of cut-through or...Howard Trickey
2013-08-07code cleanup: more confusion with 0/NULL/falseCampbell Barton
2013-07-26use math functions for copying matrix/vector types, also cast const pointers ...Campbell Barton
2013-07-23correct own error in recent edits to editderivedmeshCampbell Barton
2013-07-23remove the pointer from BLI_bitmap's typedef, Campbell Barton
2013-07-23optimization: only calculate the normals for passing into derivedMesh foreach...Campbell Barton
2013-07-22optimization:Campbell Barton
2013-07-22optimization: lazy initialize EditDerivedBMesh members vertexNos, polyNos.Campbell Barton
2013-07-19code cleanup: use boolean for derived mesh face test functionCampbell Barton
2013-07-09fix [#36055] Edge/Face Info display on wrong position with key framesCampbell Barton
2013-07-01Fix incorrect GLSL bump mapping in editmode when the UV coordinates areBrecht Van Lommel
2013-05-30modifier stack: lazy initialize normalsCampbell Barton
2013-05-27bmesh optimization: use offsets for deform-vert lookups to avoid customdata l...Campbell Barton
2013-05-10avoid customdata lookups for selection test/enable disable.Campbell Barton
2013-05-08fix [#35259] Crash when enabling mesh analysis intersect.Campbell Barton
2013-04-29tweak for epsilon of intersection check, was too small for some cases.Campbell Barton
2013-04-20skip checks in statvis_calc_thickness(). also remove paranoid NULL checks in ...Campbell Barton
2013-04-20fix [#35025] Mesh Debug samples strange behaviorCampbell Barton
2013-04-18fix for problem with too low epsilon when calculating thickness, also increas...Campbell Barton
2013-04-18add display mode for sharp edges.Campbell Barton
2013-04-18fix range for face distortion and display for concave ngons.Campbell Barton
2013-04-18add mesh distort display mode (highlights distorted faces)Campbell Barton
2013-04-18use modified vertex coords for calculating display thickness and intersections.Campbell Barton
2013-04-18Support object scale for mesh display options. (currently only uniform scale ...Campbell Barton
2013-04-17display options to help with 3d printing.Campbell Barton
2013-04-16code cleanup: use BKE naming conventions for functions in BKE_editmesh.h and ...Campbell Barton
2013-04-16move editmesh functions out editderivedmesh.c into editmesh.cCampbell Barton
2013-04-14code cleanup: edit-derived-mesh, define 'BMesh *bm' as local variable, avoid ...Campbell Barton
2013-04-14fix for error in editmesh derived callbacks, emDM_getVert(), emDM_getEdge(), ...Campbell Barton
2013-04-14code cleanup: rename BKE_tessmesh -> BKE_editmesh, rename EditDerivedBMesh.tc...Campbell Barton
2013-04-14Mesh Drawing:Campbell Barton
2013-04-13code cleanup: more minor changes for editmesh face drawing.Campbell Barton
2013-04-13code cleanup: editmesh draw functions, make face drawing more consistent.Campbell Barton
2013-02-23fix [#34378] GLSL materials using multiple UV layers fail in editmodeCampbell Barton
2013-02-23code cleanup: make editmode PASSATTRIB into static functions.Campbell Barton
2013-02-06style cleanup: some warnigs & spelling.Campbell Barton
2013-01-21fix regression in own recent commit, vertex flags were left uninitialized.Campbell Barton
2013-01-14use booleans for bmesh api.Campbell Barton
2013-01-11remove CustomData_get_active_offset(), use CustomData_get_offset to return th...Campbell Barton
2013-01-10editmesh texface drawing, reuse customdata offset rather then looking up each...Campbell Barton
2013-01-10don't store bevel weights or edge crease customdata layers in editmode unless...Campbell Barton
2013-01-09speedup for editmesh getVert and getEdge, were doing 2x customdata layer look...Campbell Barton
2012-12-27add option to BLI_scanfill_calc() - BLI_SCANFILL_CALC_HOLES, gives some speed...Campbell Barton
2012-12-27remove realloc's during BMEdit_RecalcTessellation(), instead use poly_to_tri_...Campbell Barton
2012-12-21speedup for face tessellation:Campbell Barton