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-09-18Add simple panel for creating multicamera correspondencesJoseph Mansfield
The create correspondence operator is currently non-functional, but it is expected that it will create correspondences between tracks in different movie clips.
2013-09-14fix weird issue after last commit where grab brush would not work andAntony Riakiotakis
also warnings fix and description fix.
2013-09-14Sculpting:Antony Riakiotakis
* Cleanup for previous commit and reduce some local variable referencing * Add support for brushes that operate on frontfaces only and do not show the option for those brushes. Currently only clay strips is in the list but this may change according to artist feedback. This should take care of the "sticky" surface problem completely.
2013-09-14Sculpting:Antony Riakiotakis
Modify calculation of sculpt plane to only take into account forward facing vertices. This will solve cases where sculpting on a volume with the two sides of the mesh inside the brush radius could move the sculpt plane inside the mesh volume. To completely fix the issue where the mesh would "stick" the two sides of the mesh together on the sculpt plane (for instance for clay strip brushes), user should enable "front face only". Perhaps some brushes, like clay strips should enforce this and not present the option in the first place.
2013-09-13Related to #36710: add a "use_viewport" option to the render operator, to ↵Brecht Van Lommel
specify if the layers and camera of the 3d viewport should be used. Python scripts don't always want this behavior.
2013-09-13change NODE_TREE_TYPES_BEGIN/END macros to include braces (matches ↵Campbell Barton
CTX_DATA_BEGIN/END)
2013-09-13Moved and renamed ED_pose_channel_in_IK_chain() ->Joshua Leung
BKE_pose_channel_in_IK_chain() This was needed for depsgraph work, and it's cleaner for RNA to have fewer dependencies on editors
2013-09-13fix/workaround [#36709] Renaming multiple objects in the outliner halts the ↵Campbell Barton
interface Only show one edit button at a time (editing multiple buttons at once I never saw in other ui toolkits and its unclear what you change).
2013-09-13when handling the escape key, check for press (ignore release events), right ↵Campbell Barton
mouse already did this. ensures the escape key isn't handled twice for one press.
2013-09-13add back library linking warning when renaming library datablocks in the ↵Campbell Barton
outliner, also typo corrections.
2013-09-12code cleanup: unnecessary shadowing and some minor pep8 edits.Campbell Barton
2013-09-12Different implementation of patch #36430: use layer froms scene directly forBrecht Van Lommel
rendering, in case some script wants to set it in the render_pre callback. In case of decoupled 3d view layers or local view it will still override this though.
2013-09-12correct brackground rectangle drawing in info view. need to compensate for ↵Campbell Barton
recent change in text offset.
2013-09-12code cleanup: headers - doxy comments.Campbell Barton
2013-09-11Fix #36705: UV pack island crashing after recent change.Brecht Van Lommel
2013-09-11Enable transform helpline in clip editorSergey Sharybin
2013-09-11Fix #36701: Mask pivioting doesnt honor parentingSergey Sharybin
Made mask transformation aware of parent matrix.
2013-09-11add mathutils.geometry.box_fit_2d() to wrap BLI_convexhull_aabb_fit_points_2d()Campbell Barton
2013-09-11interface, replace '|' with define UI_SEP_CHARCampbell Barton
2013-09-11fix [#36699] ASCII-character "|" blocks parentingCampbell Barton
don't split '|' for rna-property search buttons (but keep for operator search).
2013-09-11take the decender into account when drawing console text.Campbell Barton
also add data types wm and mask to dataname() and unshadow var in ghost/x11
2013-09-11fix [#36697] Topology mirror causes vertices to jump?Campbell Barton
don't give up too early finding unique geometry by keeping track of edges with matching vertex hashes and keep checking for unique topology as long as the total of these edges keeps increasing.
2013-09-11uv-pack operator: option to rotate uv islands to fit in the optimal ↵Campbell Barton
rectangle when packing.
2013-09-11correct own recent edits, area for text line numbers drawing was too small.Campbell Barton
2013-09-10misc minor changesCampbell Barton
- make cmake osx use of -ftemplate-depth match scons. - use array size within sizeof(), more compact. - replace AT with __func__ where the function is unique enough. - BLI_box_pack_2D -> 2d to match other functions. - rename new mesh normal calculation to mesh.calc_normals_split()
2013-09-10Fix #36577: sculpt area plane texture mapping + random angle did not work.Brecht Van Lommel
2013-09-10Enable view3d-like shortcuts for pivot point in clip editorSergey Sharybin
2013-09-10Don't show 2D cursor in tracking mode i pivoting is not set to 2D cursorSergey Sharybin
2013-09-10Tweaks to plane trackSergey Sharybin
- Do plane re-evaluation only when transform is actually done. Before this re-evaluation happened on every mouse move. - Added a flag "Auto Keyframe" for the plane track, which does: * If Auto Keyframe is enabled, then every manual edit of the plane will create a new keyframe at current frame and update plane motion between current frame and previous/next keyframe. This now also implies blending detected motion with neighbor keyframes, so there's no jump happening. No automatic update on manual point tracks edit will happen. * If auto Keyframe is disabled, then no keyframes are adding to the plane and every plane tweak will re-evaluate in on the whole frame range. In this case manual tweaks to point tracks and re-tracking them implies plane re-evaluation.
2013-09-10fix [#36492] Keymap: Issue setting operator path propertiesCampbell Barton
2013-09-10code cleanup: use bool for imbuf allocation functions.Campbell Barton
2013-09-10Fix #36356: faces not drawn with constructive modifier + dynamic paint, where itBrecht Van Lommel
overrides material colors with dynamic paint colors.
2013-09-10Usual UI messages fixes...Bastien Montagne
2013-09-09Film response looks:Brecht Van Lommel
* Reorder list a bit to put brands together * Move looks menu below views * Rename camera_response to film_response folder, to make clear that these are photographic film types, not camera models
2013-09-09Fix #36682: disable shift+backspace shortcut to delete all text in text fields,Brecht Van Lommel
it's too easy to hit accidentally and isn't a standard shortcut. Deleting all text is quite easy by just pressing backspace right after clicking the text field anyway.
2013-09-09Create/delete keyframe for motion tracks in clip editorSergey Sharybin
Use I to create a new keyframe, Alt-I to remove the ketframe.
2013-09-09Enable vertex snapping to bundle positionsSergey Sharybin
This means it's possible now to snap stuff to reconstructed tracks positions.
2013-09-09Film response curves implemented as a looksSergey Sharybin
This commit implement's OCIO's Looks idea which is about applying some color correction on the buffer before it get's affected by a display transform. This is mainly used to modify images in an artistics way. Currently we've got looks generated from film response curves for all sorts of cameras. Patch by both of me and Brecht.
2013-09-09Fix #36663, Bone properties sometimes vanish when mousing into properties ↵Lukas Toenne
window. Active edit bone was cleared from armature after each file save, even though the edit data is not actually freed then. Without the active edit bone the poll functions for bone panels fail.
2013-09-09correct error in recent changes for building with openmp.Campbell Barton
rename DM_OMP_LIMIT to BKE_MESH_OMP_LIMIT and set to 0 when in debug mode, same for BM_OMP_LIMIT.
2013-09-09screw tool used uninitialized normal to detect flipping direction.Campbell Barton
lookes like bug from bmesh merge, restored from 2.4x.
2013-09-08code cleanup: quiet warningsCampbell Barton
2013-09-07changes to grid fillCampbell Barton
- use 4 weights for vertex customdata blending (was previously only using 2) - option for simple blending, which blends locations using weights too and doesn't attempt to maintain the shape, useful for flat surfaces or times when keeping the shape gives odd results.
2013-09-07missing NULL check in recent commit, also skip some calculations in ↵Campbell Barton
mean_value_half_tan functions for degenerate cases.
2013-09-07avoid divide by zeto in node preview drawing.Campbell Barton
2013-09-07rename cursor setting functions to make modal set/restore more clearly ↵Campbell Barton
related functions.
2013-09-063D View: add shift+Z shortcut key to switch to Rendered draw mode.Brecht Van Lommel
2013-09-06Fix #36672: outliner allowed to toggle linked group visibility, which should notBrecht Van Lommel
be allowed because this is linked data, so any changes would not be saved.
2013-09-06error in recent gridfill commit, calculating span last failed.Campbell Barton
2013-09-06grid-fill now detects non-square grids (this is what users would expect)Campbell Barton
http://www.graphicall.org/ftp/ideasman42/gridfill_detect_nonsquare.png