limit number of arguments on more functions
This commit is contained in:
		
							parent
							
								
									89f758fdf9
								
							
						
					
					
						commit
						ffa6c7a16c
					
				@ -34,6 +34,7 @@ DEFAULT_LAYER = 'DEFAULT'
 | 
			
		||||
 | 
			
		||||
def write(pattern: Pattern,
 | 
			
		||||
          stream: io.TextIOBase,
 | 
			
		||||
          *,
 | 
			
		||||
          modify_originals: bool = False,
 | 
			
		||||
          dxf_version='AC1024',
 | 
			
		||||
          disambiguate_func: Callable[[Iterable[Pattern]], None] = None):
 | 
			
		||||
 | 
			
		||||
@ -54,6 +54,7 @@ def build(patterns: Union[Pattern, List[Pattern]],
 | 
			
		||||
          meters_per_unit: float,
 | 
			
		||||
          logical_units_per_unit: float = 1,
 | 
			
		||||
          library_name: str = 'masque-gdsii-write',
 | 
			
		||||
          *,
 | 
			
		||||
          modify_originals: bool = False,
 | 
			
		||||
          disambiguate_func: Callable[[Iterable[Pattern]], None] = None,
 | 
			
		||||
          ) -> gdsii.library.Library:
 | 
			
		||||
 | 
			
		||||
@ -12,8 +12,8 @@ from .. import Pattern
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def writefile(pattern: Pattern,
 | 
			
		||||
          filename: str,
 | 
			
		||||
          custom_attributes: bool=False):
 | 
			
		||||
              filename: str,
 | 
			
		||||
              custom_attributes: bool=False):
 | 
			
		||||
    """
 | 
			
		||||
    Write a Pattern to an SVG file, by first calling .polygonize() on it
 | 
			
		||||
     to change the shapes into polygons, and then writing patterns as SVG
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user