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
2014-08-17CleanupCampbell Barton
2014-08-17Math Lib: replace epsilon with check against zeroCampbell Barton
line-tri intersection depended on scale, The check made small triangles & lines fail. So just check for divide by zero as ray-cast currently does.
2014-08-17Fix filenames in splashscreen.Bastien Montagne
For some reason, labels of buttons in popups/menus were clipped left. Removed that function (was the only place were it was used), clipping text by its left is really bad for its understanding! Instead, extended clip_middle code so that it optionnally preserves a right piece of the given string (like the shortcut part of a menu label). Think that's what makes more sense here (note that most menus adapt themselves to their longest item, we do not have much fixed-width ones, anyway). Also tweaked a bit clip_middle logic, so that left part always have at least ten chars (in addition to already existing 'min width' checks).
2014-08-16Math Lib: add isect_line_line_epsilon_v3Campbell Barton
2014-08-16CommentsCampbell Barton
2014-08-15Fix T41421Antony Riakiotakis
Don't store selection properties, if those are set in the keymap we can end uo locking one state forever.
2014-08-15Fix T41427: Region overlap moves into wrong window.Bastien Montagne
There was some fuzzyness in `region_overlap_fix()`, using an 'other side' region as ref to move current one in case their rect would intersect... New code is a bit more complex, but should handle nicely all situations, mostly ensuring we only translate an overlap if we find a previous one **on the same side**, and ensuring we also never have intersecting overlapping regions from different sides (since this does not work nice at all).
2014-08-15CleanupCampbell Barton
2014-08-15Fix uninitialized imagepaint values on new scene, report by kopias onAntony Riakiotakis
irc
2014-08-15Correction to last commit, rna namingCampbell Barton
2014-08-15Final Fix T41222 Blender gives weird ouput when baking (4096*4096) ↵Dalai Felinto
resolution on GPU It now uses the tile size to split the job. For CPU this may add overhead, but for GPU this is highly needed. Reviewers: sergey Differential Revision: https://developer.blender.org/D690
2014-08-15Solidify Modifier "Rim Only" OptionCampbell Barton
D737 by scorpion81 with own edits
2014-08-15Modifiers: consider all constructive modifiers as 'preview' ones as well.Bastien Montagne
Indeed, constructive modifiers are highly likely to modify CDLayers like vgroups or vcols! See vertexgroup2.blend file ({F93770}) in T40523, especially obvious with subsurf modifier.
2014-08-15Fix T41443: Separate bug with Curves & HooksSergey Sharybin
This solves the crash, but indices might be wrong after the separation. There are loads of other ways to confuse hook indices in both meshes and curves, for now considering this a TODO.
2014-08-15ColorRamp HSV, HSL Blend ModesCampbell Barton
D297 by charlie with own edits
2014-08-15Cleanup: comment & var nameCampbell Barton
2014-08-15Fix T41435: Info-text lags changing space-typesCampbell Barton
2014-08-15UI: avoid spacetype and butspacetype mismatchCampbell Barton
2014-08-14Pie menus:Antony Riakiotakis
If user drags away from initial position, menu changes to drag style and returning to that position won't remake the menu click-style. Allows to use the threshold indicator to cancel the pie.
2014-08-14Aaaarh! aaargh!Antony Riakiotakis
2014-08-14Last fix wasn't complete, sorry for that..Antony Riakiotakis
2014-08-14Deactivate last active button for pie menu popups.Antony Riakiotakis
2014-08-14Fix crash on texture painting after new scene is added, reported byAntony Riakiotakis
kopias on irc, thanks.
2014-08-14Fix part of T41297.Antony Riakiotakis
Add precision mode to radial operator by keeping the shift key pressed. Precision mode works by checking difference between absolute window coordinates and the point where shift was pressed and adding those to the distance between that point and the radial center. This allows bigger negative/positive range than using a strict radial scheme.
2014-08-14Revert modal operation of cursor. This change was far less innocent thanAntony Riakiotakis
was first thought and could mess up tweaking events for the left mouse.
2014-08-14UI: Don't print user passwords in info-spaceCampbell Barton
2014-08-14Correct own regression in password button editingCampbell Barton
Fix T41416: by iri Hnidek
2014-08-14Remove MSVC2008 workaroundCampbell Barton
2014-08-14Fix T41425: UI wobbles using scrollbarCampbell Barton
2014-08-14BMesh: use a smaller dist3 thresholdCampbell Barton
Matches array modifier remove-doubles
2014-08-14Hack for edge-slide macro was lost in header cleanupCampbell Barton
add back include for USE_LOOPSLIDE_HACK
2014-08-14hint checks to re-alloc as unlikelyCampbell Barton
also edit comments for knife tool
2014-08-14remove MAXFLOAT defineCampbell Barton
2014-08-13Fix out of bounds read when recalculating mipmaps, error reported byAntony Riakiotakis
address sanitizer. This was strangely only triggered when float buffers were used.
2014-08-13Fix T41408: Render layer pass bug, second attemptSergey Sharybin
Missed some passes in the previous commit. Now seems all the passes are covered, at least with my understanding of the things. There're some weird things going around with the refraction pass, but that is caused by some other issue in the code. Would rather call it a TODO for now.
2014-08-13Maybe slightly controversial pie commit:Antony Riakiotakis
Make pie menu item placement touch the radius from the internal side of the buttons rather than placing on the center on the cirtcle. This allows us to get rid of the separate visual angle property, also allows for tighter placement of pies with a smaller radius without easily overlapping. Also pie menu title now always appears above the threshold indicator.
2014-08-13Correct missing new line in the debug printSergey Sharybin
2014-08-13Align pie menu title on center.Antony Riakiotakis
2014-08-13Image Editor: only do alpha test if output file requires alphaDalai Felinto
(internal change, nothing should change to the user)
2014-08-13Correct menu items active behavior applying to dialogsCampbell Barton
2014-08-13Fix T39387: Knife makes duplicate verts with subsurfCampbell Barton
2014-08-13Math Lib: rename barycentric_transform -> transform_point_by_tri_v3Campbell Barton
also add transform_point_by_seg_v3
2014-08-13Math Lib: name signed versions of dist_to_plane_v3 explicitlyCampbell Barton
also add unsigned versions
2014-08-13Knife tool: avoid copying vectorsCampbell Barton
2014-08-13Fix possible uninitialized var useCampbell Barton
2014-08-13SpellingCampbell Barton
2014-08-13SpellingCampbell Barton
2014-08-13RNA: use static declarationsCampbell Barton
2014-08-13Compare squared distances for tracking selectionCampbell Barton
2014-08-13Knife tool: cleanup threshold use, avoid sqrtCampbell Barton