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
2013-08-05SnapSystem: begun implementing better state and event handling for the snap ↵soc-2012-sushiLuke Frisken
system
2013-08-02brought accross a lot of the comments from the wiki for snap.cLuke Frisken
2012-11-06Bevel: do custom data interpolation.Howard Trickey
2012-11-03Bevel: copy attributes from example verts and facesHoward Trickey
2012-10-29More fixes to bevel.Howard Trickey
2012-10-28(no commit message)Howard Trickey
2012-10-18Rework bevel to fix a bunch of bugs.Howard Trickey
2012-09-17Disable textured planar snap drawing, was causing problems with windowsLuke Frisken
compilation.
2012-09-12Fixed a disconnected vertex in bevel; fixed header print for bevel.Howard Trickey
2012-09-12Removed debugging code left by mistake in last commit.Howard Trickey
2012-09-11Fix for round bevel when even number of segments.Howard Trickey
2012-09-11Clean up warnings, formatting, spelling, and removeHoward Trickey
debugging code.
2012-08-31Set contributor's name in Laplacian Smooth files.Alexander Pinzon
2012-08-22Bridge, add n-gon optimizationAlexander Mokhov
Bevel, fix error in calculating profile.
2012-08-21svn merge ^/trunk/blender -r50014:50094Campbell Barton
2012-08-21fixed [#32373] Copy Vertex Group operator copies any value as full 1.0Campbell Barton
2012-08-21alt+wheel scrolling over the render slots works again (this didnt support ↵Campbell Barton
scrolling when new interfaces would replace the old ones).
2012-08-21fix [#32374] Curve compositor UI drawing glitchCampbell Barton
copy the curve for the compositor.
2012-08-21Fix #32334: mesh separate by material with > 2 materials could include someBrecht Van Lommel
incorrect extra edges.
2012-08-21change curve evaluation functions never to modify curve data (ensures thread ↵Campbell Barton
safety), now initializations has to be done outside evaluation.
2012-08-21Fix #32341: extrude with a mirror modifier could lead to orphan vertices, itBrecht Van Lommel
was already removing unnecessary edges, just not vertices of those edges.
2012-08-21Fix #32369: pixel glitch with compositor curves node, and some pixels havingBrecht Van Lommel
black point = white point. That's a degenerate case, clamped it now to 1e5, which is a bit arbitrary, but infinity would give NaN issues.
2012-08-21Fix #32355: select vertex path not working when vertices are selected with e.g.Brecht Van Lommel
border select. There was a fix before bmesh where it would require exactly two vertices to be selected, but this was not ported over, and it also wasn't quite correct. This case should also work: click on two vertices, selected the path between them, and then click on a 3rd vertex and select path, to extend the path further from the 2nd to the 3rd vertex. Now both use cases should work.
2012-08-21code cleanup: more legacy compo functions ifdef'dCampbell Barton
2012-08-21fix for bug with render slots - where the menus wouldnt only show layers ↵Campbell Barton
from the last render which could be meaningless in different render slots.
2012-08-21Fix forJeroen Bakker
* [#32356] Problem with "Ghost" in the "Glare" Node in Compositor
2012-08-21code cleanup: minor changes to last commit.Campbell Barton
2012-08-21Sequencer: invalidate current frame cache on sequence transformSergey Sharybin
2012-08-21code cleanup: vfont's used confusing and over complicated method of storing ↵Campbell Barton
memory for loaded fonts, not store as a temp var in the fonts.
2012-08-21Fix #32370: compiler error in wm_playanim.c due to conflicting Carbon ID typeBrecht Van Lommel
from Quicktime headers. However the Quicktime init/exit is no longer needed here, it happens in IMB_init/IMB_exit now, so removed that code.
2012-08-21code cleanup: includes and correction for macroCampbell Barton
2012-08-21mask: skip self intersection on drawing when fill is disabled, since it was ↵Campbell Barton
only drawing on one side of an unfilled spline.
2012-08-21code cleanup: some legacy compo nodes were not ifdef'dCampbell Barton
2012-08-21code cleanup: don't use magic numbers for curve flag & use bool args for ↵Campbell Barton
curvemapping_changed()
2012-08-21compositor color curve was MEM_dupallocN'ing the curve for every pixel ↵Campbell Barton
calculation (when there were black or white inputs on the curve node). avoid allocation by using local vars for black/white storage & curve calculation.
2012-08-21code cleanup: use math functions for curve compo code.Campbell Barton
2012-08-21code cleanup: use BLI_RCT_SIZE macroCampbell Barton
2012-08-21Legacy Compositor / Scons:Thomas Dinges
* Added WITH_BF_COMPOSITOR_LEGACY, enabled per default.
2012-08-20Cycles / Cmake:Thomas Dinges
* Removed last instance of "BLENDER_PLUGIN" define, removed in r39465 in the cycles branch.
2012-08-20Parallel, and Planar snapping implemented, along with some fairly majorLuke Frisken
work on SnapSystem. More to come in the comming weeks! GSOC 2012 Precision Modelling tools
2012-08-20HDR color picker now works in the clip space.Campbell Barton
2012-08-20fix for mask feather intersection checks not working right for non-filled, ↵Campbell Barton
feathered masks. now do intersection checks for both sides of the feather.
2012-08-20macros for rectangle center and sizeCampbell Barton
2012-08-20Sequencer: fix regression introduced in own previous commitSergey Sharybin
Invalidate preprocessed cache when when global sequencer cache is begin invalidated. This is needed so scene would be rendered with a proper settings, not taken from preprocess cache.
2012-08-20minor cleanup to node pasting.Campbell Barton
2012-08-20fix for crash pasting nodes into a node tree when the ID pointer is lost.Campbell Barton
also fix for ID user count on paste which wasn't increasing.
2012-08-20Sequencer: skip adding ImBuf to cache when it failed to renderSergey Sharybin
2012-08-20Sequencer: Python API for sequence modifiersSergey Sharybin
2012-08-20fix for own error in bpy.utils.blend_paths() arg parsing.Campbell Barton
2012-08-20quiet unused function warnings in RNA for functions created by macros.Campbell Barton