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-09-26fix [#32665] Inconsistent Circle Mesh Edge SubdivisionCampbell Barton
2012-09-06fix for error in own recent commitCampbell Barton
2012-09-06code clenup: comments and some style edits on ghost/osx (odd indentation)Campbell Barton
2012-09-06fix [#32500] Odd behaviour with subdividing an ngonCampbell Barton
2012-09-06committed by accidentCampbell Barton
2012-09-06code cleanup: use *(*var)[2] for pairs in bmesh code rather then a 1d array s...Campbell Barton
2012-09-05code cleanup: bmesh subdivide code was growing arrays one by one, when the fi...Campbell Barton
2012-08-13style cleanup: use <pre> for doxygen ascii art Campbell Barton
2012-07-21add option so operators can be called with a flag, currently the only flag is...Campbell Barton
2012-06-30rename bmesh ops since they are exposed in an api now.Campbell Barton
2012-05-03style cleanup: formatting and some float/double promotionCampbell Barton
2012-05-03Fix #31139: fractal mesh subdivide was only working along normal where previo...Brecht Van Lommel
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ...Campbell Barton
2012-04-24fix own error with subdivision (broke icosphere), also noticed icosphere vani...Campbell Barton
2012-04-23- fix for python freeing its own bmesh clearing the global mirror cache.Campbell Barton
2012-04-23code cleanup: bmesh subdivide code - BM_mesh_esubdivideflag() & "esubd" bmesh...Campbell Barton
2012-04-23code cleanup: better use of BLI_array_* (grow in larger steps where possible)...Campbell Barton
2012-04-20code cleanup: prefer BM_face/edge/vert_select_set() over BM_elem_select_set()...Campbell Barton
2012-04-19code cleanup: remove unused BMesh args.Campbell Barton
2012-04-19remove BM_ITER, BM_ITER_INDEX macros, use ELEM or MESH variants only (the mac...Campbell Barton
2012-04-19style cleanup: BM_ITER / BM_ITER_INDEX / BMO_ITERCampbell Barton
2012-04-13bmesh api changes:Campbell Barton
2012-04-06bmesh minor change - avoid increasing array sizes one by one and use iterator...Campbell Barton
2012-04-06code cleanup: add doxygen headers to bmesh operator files, also add own inclu...Campbell Barton
2012-04-03fix [#30735] bmesh: loop-cut cuts faces isolated by hidden facesCampbell Barton
2012-04-03BM_mesh_esubdivideflag was adjusting the totedgesel variable when this is han...Campbell Barton
2012-04-02fix [#30768] Project from View UV map tool includes hidden geometry r45323Campbell Barton
2012-03-30For BMesh functions that test flags, add enabled/disabled variants.Nicholas Bishop
2012-03-27Fix more truncated comments.Nicholas Bishop
2012-03-27Fix bug 29123, subdivide smooth distorts shape with numcuts > 1.Nicholas Bishop
2012-03-21style cleanup: bmeshCampbell Barton
2012-03-20style cleanupCampbell Barton
2012-03-19code cleanup: bmesh api - make arg order consistent - htype before hflag or o...Campbell Barton
2012-03-12code cleanup/bugfix uninitialized valuesCampbell Barton
2012-03-08building without python works again, cleanup bmesh include paths (cmake and s...Campbell Barton
2012-03-06fix for own error in edge-rotate keeping edge customdata - this was crashing ...Campbell Barton
2012-03-02Code Cleanup - naming consistancy for bmesh struct typesCampbell Barton
2012-03-01bmesh api:Campbell Barton
2012-03-01style cleanupCampbell Barton
2012-03-01style cleanup: bmesh - have continue on new line, also avoid unneeded loop in...Campbell Barton
2012-03-01Spelling CleanupCampbell Barton
2012-02-28code cleanup:Campbell Barton
2012-02-27bmesh minor api edits to be a little more typesafe.Campbell Barton
2012-02-27style cleanupCampbell Barton
2012-02-26bmesh api name change, add _count suffix for BM_*_share functions.Campbell Barton
2012-02-26replace BMESH_ERROR with BMESH_ASSERT, most areas it was used are better suit...Campbell Barton
2012-02-26replace bmesh_error with macro that gives the file/line/func the error happen...Campbell Barton
2012-02-26bmesh code cleanupCampbell Barton
2012-02-23swap arg order for BM_edge_split(), makes sense to have edge as firstCampbell Barton
2012-02-20added boolean type for bmesh operators, will make python wrapping clearer and...Campbell Barton