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-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
2012-04-16minor speedup for scanfill, dont calculate the normal if its already known - ↵Campbell Barton
use for editmode ngon filling.
2012-04-16bmesh todo: remove unused code.Campbell Barton
2012-04-16make scanfill threadsafe (wasnt threadsafe before BMesh merge but before the ↵Campbell Barton
merge it didn't need to be) - now rendering uses its better if its threadsafe.
2012-04-16code cleanup: avoid confusion with incorrectly named argument to ↵Campbell Barton
BLI_edgefill(), was 'mat_nr', now 'do_quad_tri_speedup'
2012-04-16fix [#30967] Straighten X/Y in the UV/Image Editor bugCampbell Barton
patch by Bastien Montagne, checked this works the same as 2.62.
2012-04-15Fix #30952: uv unwrapper not working as well as 2.62 on some topologies, let theBrecht Van Lommel
unwrapper itself decide how to split quads since it has specific checks for the best unwrapping split built in, gives better results.
2012-04-15Tweak knife/unwrap tesselation code a bit, it uses a random offset, now alsoBrecht Van Lommel
seed the random number generator to at least make these operator repeatable. I don't know why it is using random numbers at all, we should really not be doing this in my opinion, but I don't understand why it's being done so won't remove it.
2012-04-15Fix #30949: live unwrap when marking seams did not work with bmesh.Brecht Van Lommel
2012-04-13fix for editmode UV hiding with edges, was also using deprecated flag ↵Campbell Barton
(UV_SELECT_FACE)
2012-04-13- startup.blend's temp dir was pointing to sergeys user dir, now point to /tmpCampbell Barton
- fix error in ctodata.py (was adding dummy bit) - make UV hide from last commit more readable.
2012-04-13fix [#30923] Hide Unselected in the UV/Image editor does nothingCampbell Barton
2012-04-13bmesh - UV editor: check if faces are visible before hiding them (was done ↵Campbell Barton
before bmesh merge).
2012-04-13style cleanup: uv editorCampbell Barton
2012-04-13bmesh api changes:Campbell Barton
- remove recently added BM_mesh_select_flush_strip(), functions purpose wasn't clear. - add BM_mesh_elem_hflag_disable_test(), BM_mesh_elem_hflag_enable_test() to match existing BM_mesh_elem_hflag_enable/disable_all(), these take a hflag to test before editing each element. This replaces the need for BM_mesh_select_flush_strip().
2012-04-13fix for UV reveal (wasnt selecting all verts because check for unselected ↵Campbell Barton
vert was incorrect after selecting the first face).
2012-04-11Fix #30895: uv editor snap selected to adjacent unselected not working ↵Brecht Van Lommel
correctly, was apply to unselected uvs too.
2012-04-11fix [#30897] UVEditor: Snap Cursor to SelectedCampbell Barton
was writing the 3rd component of a 2D vector.
2012-04-10Fix #30879: uv editor hide did not work with the mesh in vertex/edge selectBrecht Van Lommel
mode, selection was not flushed down to faces.
2012-04-10uv editor: don't draw active face stipple when the face isn't visible (error ↵Campbell Barton
from bmesh merge), also replace 'em->bm' with 'bm' var while drawing.
2012-04-10fix [#30880] Selected to Adjacent Unselected brokenCampbell Barton
2012-04-04rename MPoly vars called mface or mf, to avoid confusion with MFace types.Campbell Barton
2012-04-03Fix #30796: uv vertex coordinates panel in uv editor incorrectly taking intoBrecht Van Lommel
account selected uvs from hidden faces.
2012-04-03Fix #30795: draw other objects in uv editor not working.Brecht Van Lommel
2012-04-03stule cleanup: edits for files which were recently cleaned up.Campbell Barton
2012-04-02Further fix for #30769: cycles assigning image to wrong material form theBrecht Van Lommel
uv image editor.
2012-04-02fix problem with select invert - flush selection.Campbell Barton
previously this wasnt needed because doing an undo push would flush the selection.
2012-03-27style/name cleanup: have EDBM_* functions match our style guide and also ↵Campbell Barton
match BM_ function naming conventions
2012-03-26Fix #30676: UV unwrap did not create UV map with proper default coordinates.Brecht Van Lommel