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
path: root/source
AgeCommit message (Collapse)Author
2011-05-13svn merge -r36603:36651 ↵Campbell Barton
https://svn.blender.org/svnroot/bf-blender/trunk/blender \nwith some manual edits
2011-05-13* Enabled rna access to fluid sim velocity vectorsMatt Ebb
The main purpose for this is to allow rendering motion blurred blender fluids in external renderers (eg. http://vimeo.com/21870635 ). Python code snippet for interpreting this data here: http://www.pasteall.org/21577 . Cleaned up some ugly hacks in this area too * Also added read-only access to scene.subframe to RNA - setting current frame and subframe should still go via scene.frame_set()
2011-05-12=bmesh= fixed knifetool mem leakJoseph Eagar
2011-05-12=bmesh=fixed shapekey mem leakJoseph Eagar
2011-05-12demoved some extraneous members from BMHeaderJoseph Eagar
2011-05-12=bmesh= fixed non-multires sculpt; excluding the DAG update won't work here, ↵Joseph Eagar
since the tesselation has to be recalculated.
2011-05-12Fix #27359: Pasting long text crashes blenderSergey Sharybin
Actual problem was caused by insufficient buffer size in ui_text_leftclip() Also fixed possible invalid memory write in GHOST_SystemWin32::getClipboard which was caused by accessing clipboard buffer after closing clipboard. This mustn't happen. Also fixed possible crush when buffer was failed to be locked.
2011-05-12for bug [#27358] Transform bug when transform > 500Campbell Barton
mouse coords would with cont. grab would wrap at short. use mouse coords as int rather then short. this problem still happens on linux because of XTranslateCoordinates
2011-05-12Bugfix #27181Ton Roosendaal
2D view panning and zooming is now fully keymappable, you can set a keyboard key to it too (hold key -> move mouse -> release key).
2011-05-12manually copy more changes from trunk.Campbell Barton
2011-05-12window_to_3d_vector was incorrect but dolly view operator was accounting for ↵Campbell Barton
it. fixed so result isnt negated and mouse coords dont need to be adjusted.
2011-05-12svn merge -r36603:36628 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-05-12== Radial control ==Nicholas Bishop
Patch to make the radial control more generic with RNA. Patch was reviewed here: http://codereview.appspot.com/4280080/ Prior to this update, the radial control code in trunk had generic parts of the radial control implemented as an incomplete operator within WM. Then each different user of the radial control had to implement a separate operator to actually pass in specific brush data -- e.g. sculpt's brush size, vpaint's brush size, etc. This patch removes all the extra operators and makes the WM operator do everything. It now takes several RNA path strings as its properties -- the only required property is data_path, which specifies the data to be modified by the radial control. The other paths affect display in various ways, e.g. rotation, color, etc. In addition to decreasing some duplicate paint brush code, these updates make it pretty easy to enable radial control for other purposes (and it can be set up entirely though python or keymaps, no extra C code needed.)
2011-05-12=bmesh=Joseph Eagar
1. Removed pinning, at least until after trunk reintegration (it's a usefull feature, but incomplete). 2. Ripped out the subclassing code I originally wrote so bmesh would be more usable for modifiers (I ended up improving CDDM instead). 3. Inlined some of the macros in bmesh.h, still need to do the macros in bmesh_operator_api.h. 4. Removed the BMESH_ITER_*** macros (except for BMESH_ITER_INDEX). They were too clunkly to be worth it.
2011-05-12missing free call in rotsys_make_consistentCampbell Barton
2011-05-12compile fixJoseph Eagar
2011-05-12remove remaining event recording codeJoseph Eagar
2011-05-12remove modified guardedalloc/ghost to rebranch from trunkJoseph Eagar
2011-05-122.5 Smoke UI:Thomas Dinges
* More generic tooltip for "strength" property as it can be FFT as well. Discovered by tobkum in IRC. :)
2011-05-11Code cleanup: remove readblenfile module, only contained some utility functionsBrecht Van Lommel
to read .blend files from runtimes, folded those into blenloader.
2011-05-11updated Ctrl+Click extrude for bmesh so it can rotate the initial selection ↵Campbell Barton
(as in trunk), and added back vertex projection function.
2011-05-11recent camera border drawing glitch fix needs to be applied to the top right ↵Campbell Barton
sides too.
2011-05-11more syncing with trunk.Campbell Barton
2011-05-11manually merged older changes from trunk.Campbell Barton
2011-05-11reverting change made r20939 with custom data layer merging.Campbell Barton
if this is really a fix it should be made in trunk first, but looks like it was committed by accident.
2011-05-11set many vars & functions as static,Campbell Barton
also commented invalid pin theme alpha assignment so bmesh branch builds with -Werror
2011-05-11fix for glitch with drawing the 2d camera border over the 3d camera.Campbell Barton
seems arbitrary and may be driver specific, but this value is in the middle of what works well on mesa software GL & my nvidia.
2011-05-11svn merge -r36583:36603 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-05-11fixed 4 uses of un-inirialized vars + some compiler warnings.Campbell Barton
2011-05-11=bmesh=Joseph Eagar
cleaned up multires projection math a bit, and improved boundary smoothing.
2011-05-10=bmesh= glsl drawing in editmode works again, also fixed some minor ↵Joseph Eagar
customdata bugs
2011-05-10Bugfix #27305Ton Roosendaal
RGB color node supports to set alpha too but never put alpha in the output. Report + fix provided by Dani G. Thanks!
2011-05-10Bugfix #27311Ton Roosendaal
Physics Gravity property now has UI range of 0-25, but real range goes to 10000 to allow scaled scenes.
2011-05-10remove some duplicate declarationsCampbell Barton
2011-05-10Fix #27217: Bézier control points moves bizarreSergey Sharybin
Re-calculate handles after applying transform matrix on curve object This commit is'n fixing changing of curve shape whe nyou're deforming it (as it was intially reported) but just adds needed handles recalculation. Handles are calculated correct in that "unneded deformed" curve.
2011-05-10minor cleanup: make functions static, use NULL for pointer comparisons,Campbell Barton
also fixed a possible bug assigning incorrect DPX function types to imbuf.
2011-05-10Typo in composition guidesDaniel Salazar
2011-05-10entering non utf8 text in filepaths in the file selector would get ↵Campbell Barton
incorrectly stripped.
2011-05-10camera composition guides: center, thirds, golden rule Campbell Barton
2011-05-10svn merge -r36564:36583 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-05-10=bmesh= fixed mesh deform crasherJoseph Eagar
2011-05-10=bmesh= fixed unlink uv selection bugJoseph Eagar
2011-05-10=bmesh= fixed prop crasher and knifetool modal map typoJoseph Eagar
2011-05-10=bmesh= fixed dissolve verts crashJoseph Eagar
2011-05-10=bmesh=Joseph Eagar
added modal keymap for knife tool. I'm not sure how to handle the panning pass-through, it's still hardcoded to happen on MIDDLEMOUSE.
2011-05-10=bmesh= undo loopcut commit, for some reason the recent merge didn't catch itJoseph Eagar
2011-05-10Fix #27346: When The FONT object is blank, the dimensions are calculated wong.Sergey Sharybin
This commit fixes boundbox for empty curve-typed objects. Because of strange reason (-1,-1,-1) and (1,1,1) was used as boundbox. Now it uses zero-sized boundbox (as it's done for meshes). This commit makes nothig with that single space character text from the report.
2011-05-09patch [#21740] Image support for Empty ObjectsCampbell Barton
from Andy Braham (andybraham) This adds support for empties to reference images and draw in the 3D view. Modifications from the original patch. - use an empty draw 'image' type - use image aspect ratio for non-square-pixels - when the image is not found, still draw the frame.
2011-05-09minor cleanup, no functional changes.Campbell Barton
2011-05-09tag unused arguments, quiet some warningsCampbell Barton