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
2019-08-10Fix T68414: GPencil crash after using L key and Ctrl+Z in Draw ModeAntonio Vazquez
There is a segment fault because the operator was in modal but the Ctrl+Z breaks the custom data. Now, the Ctrl+Z ends the operator.
2019-08-10Add Constrained Delaunay Triangulation routine to Blenlib.Howard Trickey
See Design task T68277, and patch D5423. This commit includes edits by @ideasman42 to patch in branch temp-D5423-update, plus responses to his comments.
2019-08-10GPencil: Improves Close stroke when the closing gap is very smallAntonio Vazquez
For very small gaps, we don't need generate geometry.
2019-08-10GPencil: Fix segment fault using Search menuAntonio Vazquez
The poll was not checking Object type
2019-08-09Text: minor change to text prefix behaviorCampbell Barton
Don't keep the cursor at the start of the line, this was creating a selection when adding a prefix without a selection.
2019-08-09Fix T68486: GPencil ehen interpolate strokes, only display one stroke not allAntonio Vazquez
The drawing loop exit too early.
2019-08-09Fix T67821: Snap to Symmetry not updatingSebastian Parborg
Added a missing depsgraph update.
2019-08-09Cleanup: move space types under DNA_DEPRECATEDCampbell Barton
Prevent accidental use
2019-08-09Cleanup: remove redundant time checkCampbell Barton
2019-08-09Fix T68322: Shear in Dopesheet causes crashSybren A. Stüvel
The Shear transform operator is now disallowed in the timeline and dopesheet editors. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D5440
2019-08-09Clarify "Save on Exit" tooltipSybren A. Stüvel
The old text, "Save modified preferences on exit" suggests that only the modified preferences are saved. This is not the case: all preferences are saved at once. This distinction is especially important after having loaded factory default settings. As discussed with @campbellbarton and @JulienKaspar.
2019-08-09Cleanup: Fix stupid style error in previous commitAntonio Vazquez
2019-08-09GPencil: Add "Self Overlap" parameter to materials to disable StencilAntonioya
This parameter was removed in 2.80 and we decided to back again, but now is inverted.
2019-08-09UI: expand on console menusCampbell Barton
Some features weren't exposed anywhere in the interface. D5443 by @tintwotin
2019-08-08BMesh: add utility to calculate normal from a vertex cloudCampbell Barton
Extract from BM_verts_sort_radial_plane & simplify.
2019-08-08Cleanup: remove function already implemented in BKE_deformCampbell Barton
2019-08-08Docs: improve description of 3D view distance offset utilityCampbell Barton
2019-08-08Cleanup: use doxy sectionsCampbell Barton
2019-08-08Cleanup: warningsCampbell Barton
2019-08-08Cleanup: Typo in naming (BLE instead of BKE, tssttt).Bastien Montagne
2019-08-08Fix T52551: undo causes crash after enabling a new rigid body when scene ↵Bastien Montagne
uses a referenced rigid body world. Poll functions were not correct here, we cannot make objects part of rigidbody sim if the RB collection is a linked one...
2019-08-08GPencil: Add mode Merge to Simplify modifierAntonio Vazquez
This option uses the same logic of the merge by distance but as an option of modifier to allow dynamic merge. This option will be very useful for LANPR generated strokes.
2019-08-08GPencil: New Simplify modifier mode Sample and operatorAntonioya
This mode simplify the stroke doing a resampling of the points and generate new geometry at the distance defined. Sample function developed by @NicksBest New Resample Stroke operator This operator recreates the stroke geometry with a predefined length between points. The operator uses the same code used in Simplify modifier. Reviewers: @mendio
2019-08-08Fix T68393: lift hardcoded limit on particle children 'child_radius'Philipp Oeser
Reviewers: jacqueslucke Maniphest Tasks: T68393 Differential Revision: https://developer.blender.org/D5436
2019-08-08Fix T68375: Polyline: can not make segment (cyclic)Philipp Oeser
Reviewers: campbellbarton Maniphest Tasks: T68375 Differential Revision: https://developer.blender.org/D5438
2019-08-08Fix T68360: Zoom too sensitive with hi-dpiCampbell Barton
Scale pixel-input by pixel size for zoom operators.
2019-08-08Cleanup: use static for undeclared functionCampbell Barton
2019-08-08Fix T67545: GPencil - New Merge by Distance operatorAntonioya
Merge points when the distance is less than a predefined value. The method to interpolate the position created a wrong merge. Now, always the secondary point is merged with the first one (merge at first), except the last point.
2019-08-082nd attempt to fix build error from rB22bdd08dfd08Philipp Oeser
sorry for the noise, if that doesnt do it, I'll revert and check this thoroughly...
2019-08-08attempt to fix build error from rB22bdd08dfd08Philipp Oeser
2019-08-08Fix T68250: Camera keyframing (Walk/Fly) despite canceling movementPhilipp Oeser
Reviewers: campbellbarton (thx!) Maniphest Tasks: T68250 Differential Revision: https://developer.blender.org/D5418
2019-08-08Fix T67587: Fix Drawing in Wireframe Non X-Ray ModeJeroen Bakker
When using Vertex or Weight paint mode on a wireframe the overlay was blended with the background. In this case we now use alpha blending. Reviewed By: fclem Differential Revision: https://developer.blender.org/D5340
2019-08-08Fix T67638: Stretched Camera Background ImagesJeroen Bakker
The matrices that projects background images in the 3d view were incorrect. The root cause was that the coordinate systems were not respected, that was most noticeable when rotating a stretched image. We re-validated conversions of coordinate spaces (UV -> Image -> Camera -> Window) and made sure that the rotation is done in image space. Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D5431
2019-08-07Fix T68268: Crash switching to Weight Paint modeCampbell Barton
Also applied to sculpt mode
2019-08-07Fix unassigned return argument in recent select refactorCampbell Barton
2019-08-07Edit Mesh Selection: Move ED_view3d_select_ functions to bf_drawmano-wii
It is easier to deal with private values of the DRW_select engine and gives room for improvement. Reviewers: campbellbarton, fclem Differential Revision: https://developer.blender.org/D5415
2019-08-07Select utils refactor: remove lagacy `ED_view3d_select_id_read_rect`mano-wii
`ED_view3d_select_id_read_rect` serves only as a bridge to `DRW_framebuffer_select_id_read`. Keeping these codes similar only increases the complexity of some functions. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D5415
2019-08-07UV: select overlap operatorCampbell Barton
New operator to select overlapping UV's, from all visible edit-mesh UV's. D5421 @deadpin with edits.
2019-08-07Fix T67623 Eevee: Modulo node making unexpected/inconsistent behaviourClément Foucault
This was a precision error. Using a more robust approach
2019-08-07Fix error in recent trackball aspect cleanupCampbell Barton
Error in 7f8d620e20c23
2019-08-07Fix T68348: Hotkeys do nothing when over viewport gizmosCampbell Barton
This was done intentionally so mouse press events tools didn't prevent gizmos receiving click events before `USE_GIZMO_MOUSE_PRIORITY_HACK` was added.
2019-08-07Fix tool-tips remaining after operators startCampbell Barton
It was possible for e.g. to have a header tooltip displayed, then start walk-navigation which didn't close the tool-tip.
2019-08-073D View: utility function to set the depth from a locationCampbell Barton
Avoids having to do projection/offset calculations inline.
2019-08-07Remove compiler fix for unsupported MSVC versionJulian Eisel
2019-08-06Fix not reported: Face selection sometimes does not work in weight, paint ↵mano-wii
and texture mode.
2019-08-06Cleanup: use BKE_ prefix for BKE_colortools.hCampbell Barton
2019-08-06Cleanup: clang-formatCampbell Barton
2019-08-06Fix Dopesheet transform regressions due to rB81dc76c19cffmano-wii
Functions that begin with the name `apply` closely resemble the main callback to apply. Ref T68137
2019-08-06Annotations: Remove Simplify option from UserprefsAntonio Vazquez
This option was an old option for Grease Pencil tools and it's not logic for Annotations. Differential Revision: http://developer.blender.org/D5426
2019-08-06Fix T68320: measure tool memoryleakmano-wii
It was a stupid mistake with the wrong pointer being referenced. It was a serious problem because the memory leak was considerable.