[Pather] add auto_render_append arg

This commit is contained in:
jan 2026-03-08 10:12:43 -07:00
commit ef5c8c715e
2 changed files with 7 additions and 3 deletions

View file

@ -13,7 +13,7 @@ def advanced_pather() -> tuple[Pather, PathTool, Library]:
lib = Library()
# Simple PathTool: 2um width on layer (1,0)
tool = PathTool(layer=(1, 0), width=2, ptype="wire")
p = Pather(lib, tools=tool)
p = Pather(lib, tools=tool, auto_render=True, auto_render_append=False)
return p, tool, lib