import_export.rst -> remove use of deprecated export_step method and use export_step function instead

This commit is contained in:
jdegenstein 2024-09-03 10:00:54 -05:00 committed by GitHub
parent 8b383240e7
commit 93408eef52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ For example:
with BuildPart() as box_builder: with BuildPart() as box_builder:
Box(1, 1, 1) Box(1, 1, 1)
box_builder.part.export_step("box.step") export_step(box_builder.part, "box.step")
File Formats File Formats
============ ============
@ -217,7 +217,7 @@ ExportSVG
-------------- --------------
Both 3MF and STL export (and import) are provided with the :class:`~mesher.Mesher` class. Both 3MF and STL export (and import) are provided with the :class:`~mesher.Mesher` class.
As mentioned above the 3MF format provides is feature-rich and therefore has a slightly As mentioned above, the 3MF format it provides is feature-rich and therefore has a slightly
more complex API than the simple Shape exporters. more complex API than the simple Shape exporters.
For example: For example: