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
2012-06-13code cleanup: use const float's where possible and specify vector size.Campbell Barton
2012-06-11correct float vector sizesCampbell Barton
2012-05-30split up proportional editing keymap functions (adding this in tomato branch ↵Campbell Barton
was messy)
2012-05-29Fix #31631: keyframe insert on uv layer element not working.Brecht Van Lommel
2012-05-26code cleanup: use array size and const for vector argsCampbell Barton
2012-05-20code cleanup:Campbell Barton
- style - multi-line ifs move braces onto new lines. - iterators - convert some to macros, other split up and move brace.
2012-05-19code cleanup: use TRUE/FALSE rather then 1/0 for better readability, also ↵Campbell Barton
replace do prefix with do_ for bool vars.
2012-05-18Fix #31504: uv unwrap incorrectly scaling pinned islands.Brecht Van Lommel
2012-05-14code cleanup: add WM_gesture_lasso_path_to_array, move mouse path to array ↵Campbell Barton
conversion there.
2012-05-14lasso select for movie clip markers.Campbell Barton
2012-05-13code cleanup:Campbell Barton
- use bmesh iterator macros in more places - rename scanfill variables (were using same names as mesh faces/verts which was confusing)
2012-05-13code cleanup: use vector math function minmax_v3v3_v3() and other minor ↵Campbell Barton
vector function edits.
2012-05-13code cleanup: missed some min/max use of float[3], also found case of ↵Campbell Barton
DO_MIN/MAX re-reading same value from array 4 times when it can do once (use minf rather then MIN2, same for maxf)
2012-05-12Fix [#31426] Unwrapping, First unwrap unwraps with LSCM, not with Angle BasedBastien Montagne
When operator method property is not set, the operator uses the one from current scene settings. We must update the operator property accordingly... Also updated default startup.blend file, to match default AngleBased method (was on Conformal one).
2012-05-12code cleanup: some style and use math defines, also small speedup for ↵Campbell Barton
dynamicpaint, dont call acosf twice.
2012-05-11style cleanup: mainly sculpt/whitespaceCampbell Barton
2012-05-11Code cleanup for parameters of subsurf_make_derived_from_derived.Nicholas Bishop
This is the first commit of the sculpt masking merge. Documentation: http://wiki.blender.org/index.php/User:Nicholasbishop/PaintMasks Thanks to Brecht for reviewing! Replaced four boolean parameters with a single flag and a new enum, SubsurfFlags.
2012-05-06Last part of fix for [#31157]: Some (actually, 172) operators have no tooltip.Bastien Montagne
Only remaining undocumented one is IMAGE_OT_record_composite (not sure what it actually does, nor even whether it’s actually working or not...). Note that I didn’t bother with operators flagged as OPTYPE_INTERNAL!
2012-05-05code cleanup: BKE_scene api naming.Campbell Barton
also stop numpy from being found in /usr/include with cmake.
2012-05-05Fix #31302: UV unwrap no longer remember last conformal/angle based unwrapperBrecht Van Lommel
choice with bmesh.
2012-05-05code cleanup: function naming for BLI functions.Campbell Barton
2012-05-04code cleanup: double promotion & some style cleanupCampbell Barton
2012-05-03Fix #31178, the cause is hidden and selected faces would return NULL as ↵Antony Riakiotakis
UVElements. To avoid checking the whole contingency of UV synch selection + face selection + face hidden, added a NULL check.
2012-05-01style cleanup: guys - set your editors to tabs!Campbell Barton
2012-05-01Fix #31147: uv unwrap not scaling islands properly to match relative size.Brecht Van Lommel
2012-04-30style cleanup: re - ↵Campbell Barton
http://wiki.blender.org/index.php/Dev:Doc/CodeStyle#Braces_with_Macros
2012-04-30code cleanup: header cleanupCampbell Barton
2012-04-30Fix missing redraw when using circle select in uv editor, IRC report.Brecht Van Lommel
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ↵Campbell Barton
to BLI_array macros.
2012-04-28code cleanup: Campbell Barton
- replace inline face UV center calc. - use const float[3] for mesh and uv functions. - remove unused define
2012-04-28add back lasso tool in the UV editor (Ctrl+LMB / Ctrl+Shift+LMB)Campbell Barton
2012-04-27fix for select flushing in UV-sync-selection mode (regression from 2.62), ↵Campbell Barton
both border select and circle select failed in edge and vertex mode (though de-selecting worked ok).
2012-04-27code cleanup:Campbell Barton
- move lasso functions into BLI (were in 3D view but UV editor needs access) - remove unused UV functions (ones that assumed 3-4 sized UVs only)
2012-04-25fix for border de-selecting with sync selectionCampbell Barton
2012-04-25code cleanup: no functional change - had both EDBM_editselection_* and ↵Campbell Barton
BM_editselection_* funcs, replace EDBM_ funcs.
2012-04-25code cleanup: dont use bmesh operator flags outside a bmesh operator, use ↵Campbell Barton
hflag tagging instead.
2012-04-24code cleanup: rename UV functions to closer match bmesh apiCampbell Barton
2012-04-24bmesh: fix selection flushing when editing UV's and sync selection is ↵Campbell Barton
enabled, and edge mode is in the 3D view.
2012-04-24bmesh/uv editorCampbell Barton
- selecting in UV window with sync-sel enabled now sets/validates sel-history. - border de-select now clears sel history.
2012-04-23code cleanup: comment unused functions (removed one which isnt useful anymore).Campbell Barton
2012-04-23code cleanup: change C naming convention (so py and C api match), eg:Campbell Barton
C: BM_face_calc_area(f), Py: BMFace.calc_area()
2012-04-22style cleanup: commentsCampbell Barton
2012-04-21style cleanup: correct typosCampbell Barton
2012-04-21style cleanupCampbell Barton
2012-04-21style cleanupCampbell Barton
2012-04-20code cleanup: prefer BM_face/edge/vert_select_set() over ↵Campbell Barton
BM_elem_select_set() when the type is known (saves switch statement check on the type). Add asserts so the correct types are ensured.
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 ↵Campbell Barton
maceros had unused args in both cases).
2012-04-19style cleanup: BM_ITER / BM_ITER_INDEX / BMO_ITERCampbell Barton
2012-04-19Fix: Mark seams in uv editor didn't workAntony Riakiotakis