Changes between Initial Version and Version 1 of Ticket #130, comment 6
- Timestamp:
- 23/09/22 00:45:55 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #130, comment 6
initial v1 1 1 I have never used UTM coordinates in my life. I've meanwhile written a bash script that upscales the 3d files without changing the original .svx files: 2 2 3 {{{ 3 4 #!/bin/bash 4 5 fn="$1" … … 7 8 cavern -o ${fn%.svx}.3d "$tmp" 8 9 rm "$tmp" 10 }}} 9 11 10 12 In Inkscape, I import the .3d files in 1:10000 scale, so they become really 1:100. Everything works fine, but it's an ugly hack that nobody without background in software development would do or understand.