Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
MadScrewdriver committed Aug 23, 2023
1 parent 70aa9fc commit b4584fb
Show file tree
Hide file tree
Showing 4 changed files with 1,915 additions and 2,091 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ from qsketchmetric.renderer import Renderer
from ezdxf import new

output_dxf = new()
input_parametric_dxf_path = 'parametric.dxf'
input_parametric_dxf_path = 'tutorial.dxf'
variables = {"h": 50}

renderer = Renderer(input_parametric_dxf_path, output_dxf)
renderer = Renderer(input_parametric_dxf_path, output_dxf,
extra_variables=variables)
renderer.render()

output_dxf.saveas('rendered_parametric.dxf')
output_dxf.saveas('tutorial_rendered.dxf')
```

## 📷 Demo showcase
Expand Down
Loading

0 comments on commit b4584fb

Please sign in to comment.