@@ -494,7 +494,7 @@ def export_obj_str(surface, **kwargs):
494
494
:rtype: str
495
495
"""
496
496
# Get keyword arguments
497
- vertex_spacing = int (kwargs .get ('vertex_spacing' , 2 ))
497
+ vertex_spacing = int (kwargs .get ('vertex_spacing' , 1 ))
498
498
include_vertex_normal = kwargs .get ('vertex_normals' , False )
499
499
include_param_vertex = kwargs .get ('parametric_vertices' , False )
500
500
update_delta = kwargs .get ('update_delta' , True )
@@ -576,7 +576,7 @@ def export_stl(surface, file_name, **kwargs):
576
576
577
577
Keyword Arguments:
578
578
* ``binary``: flag to generate a binary STL file. *Default: True*
579
- * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 2 *
579
+ * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 1 *
580
580
* ``update_delta``: use multi-surface evaluation delta for all surfaces. *Default: True*
581
581
582
582
:param surface: surface or surfaces to be saved
@@ -597,7 +597,7 @@ def export_stl_str(surface, **kwargs):
597
597
598
598
Keyword Arguments:
599
599
* ``binary``: flag to generate a binary STL file. *Default: False*
600
- * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 2 *
600
+ * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 1 *
601
601
* ``update_delta``: use multi-surface evaluation delta for all surfaces. *Default: False*
602
602
603
603
:param surface: surface or surfaces to be saved
@@ -606,7 +606,7 @@ def export_stl_str(surface, **kwargs):
606
606
:rtype: str
607
607
"""
608
608
binary = kwargs .get ('binary' , False )
609
- vertex_spacing = int (kwargs .get ('vertex_spacing' , 2 ))
609
+ vertex_spacing = int (kwargs .get ('vertex_spacing' , 1 ))
610
610
update_delta = kwargs .get ('update_delta' , True )
611
611
612
612
# Input validity checking
@@ -657,7 +657,7 @@ def export_off(surface, file_name, **kwargs):
657
657
""" Exports surface(s) as a .off file.
658
658
659
659
Keyword Arguments:
660
- * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 2 *
660
+ * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 1 *
661
661
* ``update_delta``: use multi-surface evaluation delta for all surfaces. *Default: True*
662
662
663
663
:param surface: surface or surfaces to be saved
@@ -674,7 +674,7 @@ def export_off_str(surface, **kwargs):
674
674
""" Exports surface(s) as a .off file (string).
675
675
676
676
Keyword Arguments:
677
- * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 2 *
677
+ * ``vertex_spacing``: size of the triangle edge in terms of points sampled on the surface. *Default: 1 *
678
678
* ``update_delta``: use multi-surface evaluation delta for all surfaces. *Default: True*
679
679
680
680
:param surface: surface or surfaces to be saved
@@ -683,7 +683,7 @@ def export_off_str(surface, **kwargs):
683
683
:rtype: str
684
684
"""
685
685
# Get keyword arguments
686
- vertex_spacing = int (kwargs .get ('vertex_spacing' , 2 ))
686
+ vertex_spacing = int (kwargs .get ('vertex_spacing' , 1 ))
687
687
update_delta = kwargs .get ('update_delta' , True )
688
688
689
689
# Input validity checking
0 commit comments