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-08-09Cleanup: fix typos in blender addonsBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D15646
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-05-23Fix error in STL importer due to API changeIyad Ahmed
when facet normals option is ticked in importer file dialog, it would trigger an error. Sharp edge draw option is now a settings from View3D Overlay. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D15001
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2020-01-13Merge remote-tracking branch 'origin/blender-v2.81-release'Dalai Felinto
This was neglected during the 2.81 development cycle.
2019-12-09Revert "STL: fix T72145 crash exporting object without data"Campbell Barton
This reverts commit 2f425cc128b8b709cc1ebf2c96ad372778f4aeda. The crash has since been fixed in the API.
2019-12-04STL: fix T72145 crash exporting object without datav2.81ablender-v2.81-releaseMikhail Rachinskiy
2019-12-04STL: fix T72145 crash exporting object without dataMikhail Rachinskiy
2019-10-15STL: cleanup and PEP8Mikhail Rachinskiy
Unused imports, move rare imports inside functions, correct description.
2019-08-02Fix T68135: Empty curve object crashes export (STL exporter part).Bastien Montagne
2019-05-16Update for Depsgraph API changesSergey Sharybin
Addresses new behavior of object.to_mesh(). This is corresponding part for D4875. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4876
2019-05-16Addons: Adopt for Dependency Graph API changesSergey Sharybin
Mainly search-and-replace approach. Tested the enabled-by-default export/import addons. Seems to work with an exception of X3D which is still referencing Blender Internal material properties. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4866
2018-11-08Update for changes in Blender's APICampbell Barton
2018-11-06Fix T57660: Export of STL format causes an exception.Bastien Montagne
Raising StopIteration was never a good idea to abort a generator function, and since 3.6 it's converted to a regular RuntimeError exception! Proper way to do that is just to use return statement (as long as there is a yield statement somewhere in the function code, it is a generator, and return statement has proper special handling in that case).
2018-10-10Update for removal of tessfaces.Brecht Van Lommel
This ports the already working addons. The disabled x3d, psk, lwo, 3ds, raw, dxf addons still need to be converted.
2018-09-26Port 'STL format' addon to Blender 2.8Jacques Lucke
Reviewers: brecht Differential Revision: https://developer.blender.org/D3730
2018-05-24Fix STL exporter for 2.8Dalai Felinto
2016-02-28Fix T47490: STL: faces not normalized correctly when exporting multiple meshes.Bastien Montagne
Using new `mesh.flip_normals()` when the mesh is transformed with a negative matrix (mirror along one axis e.g.).
2015-05-03Fix T44536: Add (limited!) normal import for STL.Bastien Montagne
Limited, because STL only stores face normals, so we can only fake this by setting all clnors of a same face to that face normal... Guess use case are rather limited, but does not hurt to have it either.
2014-10-07Meeeh, cleanup (sorry for the noise :/ ).Bastien Montagne
2014-10-07STL import: Better to transform whole mesh at once, rather than each point ↵Bastien Montagne
in py. Thanks Campbell for the headup.
2014-10-07Fix T42000: STL export scale incorrect.Bastien Montagne
Not a bug, in fact, more like a feature request. Added an option to take into account scene's scale on both export and import time. Also added scaling/axis conversion to importer.
2013-04-15option to apply scale on export. also add global scale options for ↵Campbell Barton
exporters. OBJ/X3D/VRML/PLY/STL
2013-03-26Fix stl addon (hope it's the right one! :p )Bastien Montagne
2013-03-26fix [#34682] STL importer ValueError exceptionCampbell Barton
2013-03-21use object.update_from_editmode() for scripts which read object data.Campbell Barton
2013-02-07make option for applying modifiers consistentCampbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-03-23update addons enabled by default to use 'faces -> tessfaces' also grease ↵Campbell Barton
pencil scatter and quake map export.
2011-07-25reverse stl export vector rotation order,Campbell Barton
also clear temp meshes after export.
2011-05-05fix [#26895] STL import in Win 7 64bitCampbell Barton
2011-03-14update for changes in rna apiCampbell Barton
2011-03-04correct exceptionCampbell Barton
2011-02-11use mesh.validate() to ensure all meshes of imported data is ok and wont ↵Campbell Barton
crash blender.
2011-02-09incorrectly switched mesh.update() --> mesh.update_tag(),Campbell Barton
update_tag() tags for depsgraph update only, update() executes normal recalculation and creates edge data.
2011-02-07rename id.update() to update_tag()Campbell Barton
2011-01-21add GPL2 headerCampbell Barton
2011-01-14bugfix [#25635] STL export results in errorCampbell Barton
also made some pep8 corrections
2010-11-26Fix for matrix * vector api cleanupM Bouchard Guillaume
2010-09-08better use of blender apiM Bouchard Guillaume
2010-08-20Fix #23394: STL export script did not check if objects could beBrecht Van Lommel
converted to meshes, making export fail with empties and armatures.
2010-08-18updates for changes in blenders apiCampbell Barton
2010-07-28Fix #22907: STL export did not take object transformation into account.Brecht Van Lommel
2010-04-17Import original io_mesh_stl from Guillaum HGM Bouchard Guillaume