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
2019-04-14CMake: prepare for BLENDER_SORTED_LIBS removalCampbell Barton
No functional change, this adds LIB definition and args to cmake files. Without this it's difficult to migrate away from 'BLENDER_SORTED_LIBS' since there are many platforms/configurations that could break when changing linking order. Manually add and enable WITHOUT_SORTED_LIBS to try building without sorted libs (currently fails since all variables are empty). This check will eventually be removed. See T46725.
2019-04-09Cleanup: spellingCampbell Barton
2019-04-02Cleanup: empty expression statement warningCampbell Barton
2019-03-25Gizmo: add option to move & dial gizmos to select as filledCampbell Barton
Draw as an outline while using solid selection.
2019-03-20Cleanup: styleCampbell Barton
2019-03-20Fix T62248: Infinite Hotspot Size Crop NodeJeroen Bakker
When the area of the crop node is zero the hotspot margin becomes infinite. This makes the gizmo by default think the translate mode hotspot is everywhere. This fix will return a state if the INFINITY is detected so we can return the hotspot drawing. The cage2d gizmo is still not usable for sizes of 0 by 0 as now it won't draw anything. the issues of the gizmo should be re-designed so we can mitigate these limitations. But that is out of scope for this fix. Reviewed By: campbellbarton Maniphest Tasks: T62248 Differential Revision: https://developer.blender.org/D4516
2019-03-08Cleanup: spellingCampbell Barton
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-06Cleanup: remove redundant doxygen \file argumentCampbell Barton
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
2019-02-03Cleanup: trailing commasCampbell Barton
Needed for clan-format not to wrap onto one line.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2019-01-26Cleanup: remove redundant BKE/BLI/BIF headersCampbell Barton
2019-01-06Cleanup: add trailing commas to structsCampbell Barton
Needed for clang formatting to workaround bug/limit, see: T53211
2018-12-03Cleanup: remove flag from GizmoCommonDataCampbell Barton
Use struct member instead, there are already many gizmo flags to keep track of.
2018-12-03Fix T58573: Camera lens gizmo error on clickCampbell Barton
2018-10-18Fix debug build after recent changes.Brecht Van Lommel
2018-10-18Cleanup: fix compiler warnings.Brecht Van Lommel
2018-10-15Mesh: remove DerivedMesh for face-map drawingCampbell Barton
2018-10-10Fix diagonal line artifact in view navigate icons.Brecht Van Lommel
Thanks to Clément for finding the fix!
2018-10-09Image Empties: Usability improvements and fixesJacques Lucke
- new "Align to View" option when loading a new image - automatically align to view when dropping an image into a viewport - larger default size for image empties - fix image empty gizmo in orthographic view - new "Align Objects to View" operator Reviewer: brecht Differential: https://developer.blender.org/D3778
2018-10-09Cleanup: namingCampbell Barton
- immAttrib* -> immAttr* - immSkipAttrib -> immAttrSkip Term 'attr' is a convention for GPU module.
2018-10-05Dial3d Gizmo: consider the offset value in the incremental angle drawing.mano-wii
This prevents misalignment with the Spin tool gizmo for example.
2018-10-04Cleanup: styleCampbell Barton
2018-10-04ED_gizmotypes_dial_3d_draw_util: use a struct to hide most parameters.mano-wii
2018-10-03Dial3d Gizmo: Add the Incremental Angle option to snap.mano-wii
2018-10-03Dial 3d Gizmo refactoring.mano-wii
Transform the gizmo's drawing function into a generic function for use in other parts of the code.
2018-09-27UI: use new 3D viewport navigation icons and image icon in add menu.Brecht Van Lommel
I had to make the viewport navigation icons a bit smaller in the SVG since the edges were being clipped off, we only support 16x16 icons currently. They are a bit blurry because of this.
2018-09-27Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-26Gizmo: initial snap support for moveCampbell Barton
This allows the gizmo to snap to 3D view elements, Although currently this isn't usable gizmo's that use operator redo.
2018-09-26Gizmo: support for cancelling move3d modal changesCampbell Barton
2018-09-25Gizmo: dial support for a click setting a valueCampbell Barton
Useful for click w/o drag to spin a full revolution.
2018-09-25Gizmo: reset dial value on cancelCampbell Barton
2018-09-24Gizmo: dial3d option to draw a partial arcCampbell Barton
2018-09-21Gizmo: spin tool XYZ axis togglesCampbell Barton
New handle type for initial spin, gives clear differentiation between do & redo (similar to extrude). Some tweaks still required to match T56571.
2018-09-21Gizmo: fix incorrect dial clip scalingCampbell Barton
Failed with obvious error when the dials scale wasn't 1.0
2018-09-20Cleanup: use win_to_3d_on_plane functionCampbell Barton
2018-09-20Merge branch 'master' into blender2.8Campbell Barton
2018-09-20Gizmo: use simple unclipped win_to_ray functionCampbell Barton
When projecting the cursor onto a plane, clipping isn't important.
2018-09-20Cleanup: renaming missed from mergeCampbell Barton
2018-09-20Gizmo: use ED_view3d_win_to_3d_on_planeCampbell Barton
2018-09-19Gizmo: tweaks to dial drawingCampbell Barton
- Add Arc-Inner-Factor, to increase the inner arc radius from 0 (show as a disk). - When showing an angle value, show the angle-end line thicker (since thats whats being adjusted). - Remove offset used by arc drawing which caused aliasing artifacts.
2018-09-19Gizmo: exclude arc from selectionCampbell Barton
Also disable polygon smooth before drawing arc.
2018-09-19Gizmo: remove matrix rotation for the dial gizmoCampbell Barton
This makes it impossible to rotate the gizmo using the matrix Y axis. Testing without this and I can't find any cases it breaks.
2018-09-19Correct polygon_smooth being left enabledCampbell Barton
2018-09-19Cleanup: commentsCampbell Barton
2018-09-19Gizmo: dial3d option to show the final angleCampbell Barton
Was showing modal-delta-angle, which isn't useful for the spin tool.
2018-09-18Gizmo: dial3d option to get angles w/o wrappingCampbell Barton
Needed for spinning multiple revolutions.
2018-09-18Gizmo: add snap & tweak to the dial widgetCampbell Barton
Allows holding Ctrl to snap w/ the spin tool.
2018-09-18Cleanup: group gizmo dial members into structsCampbell Barton
2018-09-17Gizmo: only respond to mouse-move eventsCampbell Barton
Missed in recent update to event handling.