Update README.md

This commit is contained in:
Ravi 2020-06-26 17:16:54 -07:00 committed by GitHub
parent 77f6fe3661
commit a0463feef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,8 @@
This tool allows you to convert .STLs to .SCADs with ease.
based on
I based this on [STL to OpenSCAD Converter](http://jsfiddle.net/roha/353r2k8w/embedded/result/) from https://www.thingiverse.com/thing:1383325 but it had a lot of issues, so I added file verification, styling, fixed typos, updated dependencies, included all the references properly, optimized code, and removed deprecated references.
STL to OpenSCAD Converter
http://jsfiddle.net/roha/353r2k8w/embedded/result/
From:
https://www.thingiverse.com/thing:1383325
#### Thingiverse use case:
Added file verification, styling, fixed typos, updated jquery, included all references properly, optimized code, removed deprecated references
Thingiverse use case:
In OpenSCAD you can use `import(example.stl)` to import an STL. However, Thingiverse Customizer doesn't support the `import` command, and it requires that everything resides in one .scad file. With this tool, you can convert all your STLs, then copy and paste each module to your main SCAD file.
In OpenSCAD you can use `import(example.stl)` to import an STL. However, Thingiverse Customizer doesn't support the `import` command, and it requires that everything resides in one .scad file. With this tool, you can convert all your STLs to OpenSCAD modules, copy and paste each module into one big SCAD file, and call the module instead of using `import()`.