1
0
mirror of https://github.com/kristov/ldraw2stl.git synced 2025-05-15 06:10:11 -07:00

Update README with powershell instructions

This commit is contained in:
ceade 2025-03-21 23:53:35 +01:00
parent 28b5718628
commit 7965e9a890

View File

@ -19,3 +19,11 @@ bin/dat2stl --file /usr/share/ldraw/parts/3894.dat --ldrawdir ./ldraw --scale 4
``` ```
For a 4X scale one of those! For a 4X scale one of those!
## Windows users
A user reported that they were able to get the tool to work on Windows using [Strawberry Perl](https://strawberryperl.com/). However, they encountered an issue that Powershell redirection under Windows will by default create a unicode file. Apparently STL readers interpret this as a binary file (because STL has both binary and ascii specifications) and fail to read it. To force ascii redirection use:
```
perl bin/dat2stl --file [part file] --ldrawdir [ldraw library] | Out-File -Encoding Ascii [output.stl]
```