Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2022-01-05Cleanup: fix typos in source codeBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
2021-12-01Cleanup: trailing space & tabs to spacesCampbell Barton
2020-03-28PDT: Further Expansion of Tangent SystemAlan Odom
This is still WIP. Further expand options to work in any plane and from selected vertices. DocStrings Added. Code refactored. Further testing is still required before this can be released for general use.
2020-02-04PDT: Docstring fixes and a small bug fixAlan Odom
All Docstrings have been examined for typos and format, etc. Small code change to set Selection Mode to "SEL" if operation is not "C" or "P" to avoid possible errors when using other operations.
2020-02-01PDT: Update Docstrings per Design Spec DocumentAlan Odom
2020-02-01PDT: Rename more variables for readabilityAlan Odom
2020-02-01PDT: Refactor per Pylint suggestions + readabilityAlan Odom
- Remove unused imports - Add comments where appropriate - Improve readability of variable names - Re-implement a couple of functions using dictionaries instead of if-statements - Results of Pylint & Black operations, plus some fixes to code.
2020-02-01PDT: Refactor - Stage 4Alan Odom
- Check Object Mode is either EDIT or OBJECT as appropriate. - Change If loop to check command values - error if D, E, For M commands. - Remove surplus command check in command_maths function. - Added import of exceptions file. - Check for Mesh Objects in Object or Edit Mode first and exit with error message if not. - Some minor changes for obscure failures in unusual circumstances. - Fixes and changes to code to correct minor errors and remove unnecessary checks. - Refactored Command File structure. - Add more checks to Fillet Operation to check selection and make sure current selected vertices/edges are always used. Previous version could use wrong selection if Bmesh SelectHistory was in place for Faces, or Edges.
2020-02-01PDT: Refactor - Stage 3 (Pylint & Black runs)Alan Odom
Most of the recommendations from pylint are now done, I have not changed variables like v in expression [v for v in... as I consider these to be normal coding practice. Rename pdt_com_functions.py to pdt_command_functions.py Fix error in Intersect operation if selected vertices resulted in more than 2 edges being selected. Priority is given to two edges as a selection, then to 4 vertices, if the four vertices represent two edges, the intersection point is at the intersection of the two edges, which might not be the four vertices, if one of the vertices forms part of two edges that are also selected. Priority is 2 edges, then 4 vertices selected individually with the mouse.
2020-02-01PDT: Refactor codebase (stage 1 + 2)Alan Odom
Moved all PDT Design Operations and Tools to Command Line file to de-dupe code. All can now be called from the command line, e.g. a command of "otc" sets the active objects Origin To Cursor, etc. Needs extensive further testing to see if all Operations in all Modes still work exactly as before. Tools menu split out from PDT Design so it can be minimised when not in use.
2020-01-15PDT: Modify Fillet functionalityAlan Odom
This enables two non-connected edges to be filleted. The Process starts with an intersection of the two edges, then fillets the corner according to input values in the UI. This option is selected by setting the Int/Fillet checkbox. The command Line version now takes the `fi...` format to intersect first. e.g. `fi1.1,6,0.05` performs an intersected fillet of 1.6 units radius, 6 segments, concave profile.
2019-12-27PDT: Fix Pivot Point graphics, revise PDT Design UIRune Morling
Pivot Point Graphics Fix: Prior to this commit, Pivot Point Graphics showed at inconsistent sizes in rotated and orthographic views. This commit now checks the status of the view and scales the graphics accordingly. PDT Design UI panel changes: Attempt to group related input fields and buttons via boxes. Feedback most welcome.
2019-12-09Add Clockmender's Precision Drawing Tools v1.1.5Rune Morling
Accepted for inclusion per T70238