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-10-05Print 3D utils: make default exported file name translatableDamien Picard
Following up to D15868, use the translation of the already extracted message "untitled" as the name of the exported STL file. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D15960
2022-09-12UI: Cleanup/Fixes of some UI messages.Bastien Montagne
2022-08-24object_print3d_utils: switch 3D Print Toolbox obj export to use the new exporterAras Pranckevicius
The 3D Print Toolbox addon was using the Python based exporter API, switch it to use the C++ based obj exporter. This is faster, supports vertex color attributes, and allows to remove the Python based exporter some day. Reviewed By: Campbell Barton Differential Revision: https://developer.blender.org/D15769
2022-08-09object_print3d_utils: replace f-strings by str.format() for I18nCampbell Barton
Unfortunately, messages cannot be properly extracted from f-strings. Use `str.format()` method instead. Ref D15615
2022-07-11Fix T99542: 3D print toolbox thickness check causes assertionCampbell Barton
Recalculate normals when applying transformation in the 3D print toolbox.
2022-06-30Cleanup: fix various typosBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D15328
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-03-28Fix various UI messages issues.Bastien Montagne
2022-02-15Cleanup: minor changes & simplification to Align-XYCampbell Barton
Also shorten text which didn't fit in the UI.
2022-02-153D Print Toolbox: Add Align to XY PlaneJaggz H
Allow an object to be rotated so one face/selection can lie flat - parallel to the - XY plane. This is useful for 3d printing setup. The button is added in the 3d Print tools addon, in the transform section. Reviewed By: campbellbarton Ref D13094
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-08-09Cleanup/fixes in UI messages.Bastien Montagne
2021-06-08Update for changes in the Python API using keyword only argumentsCampbell Barton
2021-05-173D-Print: refactor clean_float to take float valuesMikhail Rachinskiy
Put float to string formatting inside the function, code looks more readable that way.
2021-05-173D-Print: reduce the scope of mesh_helpers moduleMikhail Rachinskiy
2021-05-173D-Print: Volume/Area tools respect scene units settingsMikhail Rachinskiy
2021-05-143D-Print: new export option Data LayersMikhail Rachinskiy
Enables export of normals, UVs, vertex colors and materials for formats that support it. Disabled by default to reduce filesize.
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-12-03Cleanup: object_print3d_utils, unused imports, varsCampbell Barton
2019-10-173D-Print: fix Copy Textures for STL and PLY exportMikhail Rachinskiy
2019-10-163D-Print: remove export VRML optionMikhail Rachinskiy
2019-10-16Print-3D: code cleanup, specify link to wikiMikhail Rachinskiy
2019-10-163D-Print: remove object join workaround for PLY exportMikhail Rachinskiy
PLY exporter now supports export selection. Also do not force active object into selection.
2019-10-16Merge branch 'blender-v2.81-release'Mikhail Rachinskiy
2019-10-16Revert "3D-Print: fix error using evaluated mesh as obj data"Mikhail Rachinskiy
This reverts commit 16b4498b6899ec23923235288218fea0dcb2ea15. First need to push to 2.81 release branch and then merge to master.
2019-10-163D-Print: fix error using evaluated mesh as obj dataMikhail Rachinskiy
2019-10-133D-Print: cleanup redundant codeMikhail Rachinskiy
already unlinks and removes object.
2019-10-133D-Print: fix error using evaluated mesh as obj dataMikhail Rachinskiy
Also clean up remaining mesh data after object join.
2019-10-113D-Print: correct description for Export operatorMikhail Rachinskiy
2019-10-10Cleanup: rename 3D print mix-in classCampbell Barton
2019-10-093D-Print: better formatting for tool reportsMikhail Rachinskiy
2019-10-093D-Print: make sure all UI panels have poll methodMikhail Rachinskiy
2019-10-093D-Print: Clean Distorted support for Adjust Last OperationMikhail Rachinskiy
2019-10-093D-Print: remove Clean Isolated toolMikhail Rachinskiy
This is already handeled by Make Manifold.
2019-10-093D-Print: better property name and description for Make ManifoldMikhail Rachinskiy
2019-10-093D-Print: Fix Make Manifold not deleting loose facesMikhail Rachinskiy
2019-10-093D-Print: remove interior faces with Make ManifoldMikhail Rachinskiy
2019-10-083D-Print: Cleanup convert docstrings to bl_descriptionMikhail Rachinskiy
2019-10-073D-Print: reorganize UI panelsMikhail Rachinskiy
Since add-on has its own tab there is no reason for using subpanels. Move Scale To tools into Transform panel. Various name changes: change top panel title to Analyze, Cleanup > Clean Up, Modify > Transform, Report > Result.
2019-10-07Rename Print3D to 3D-PrintMikhail Rachinskiy
D2315
2019-09-25Print3D: remove Select Non Manifold tool from reportMikhail Rachinskiy
There is no reason why it should be there.
2019-09-24object_print3d_utils: shorten tab name: T70017meta-androcto
2019-09-24Print3D: use subpanels to declutter UIMikhail Rachinskiy
Print3D has three tool categories: Mesh Check, Cleanup & Modify, Export. The first category being the main point of the add-on, the rest are supplementary and should not take visual space by default. Notes: Ideally Cleanup & Modify should be their own categories, but there are only two Modify tools so I decided to merge into one category. There is a point to make that Cleanup & Modify panel should be open by default, I am not strongly agains that and it could be done upon receiving feedback from users. Also fix multiple Select Non Manifod operators displaying in report.
2019-09-22Print3D: Use Operator.report for Export toolMikhail Rachinskiy
2019-09-20Print3D: Cleanup styleMikhail Rachinskiy
Format class names according to Blender code style guide.
2019-09-20Print3D: Use Operator.report for cleanup toolsMikhail Rachinskiy
* Cleanup Isolated: use Operator.report istead of Print3D report.\n* Cleanup Distorted: report triangulated face count.
2019-09-20Print3D: Cleanup codeMikhail Rachinskiy
Remove redundant code and workarounds, better variable names, cleanup style.
2019-09-18Print3D: cleanup readmeMikhail Rachinskiy
Remove readme.rst as there was no useful information there. Cleanup todo.rst, remove completed TODOs.
2019-09-18Print3D: Fix (unreported) error in Make Manifold toolMikhail Rachinskiy
Remove redundant boundary fill step which gave the error when there was no boundary selected. Make sides property default to 0 so fill holes will cover for boundary fill absence.