In my recent experiments with producing .svg files programmatically I’ve found that if I start the file with:
<svg x=“0.000mm” y=“0.000mm” width=“250.000mm” height=“200.000mm” viewBox=“0 0 250 200”>
<!–
add a border rectangle to ensure proper alignment in Carbide Create
–>
<rect x=“0” y=“0” width=“250” height=“200”
style=“stroke:black;stroke-width:0.25;stroke-opacity:0.2;fill:none”/>
<!–
overall outline for cutting the quadrant
–>
<path
d= "M 15.000 195.000
L 18.141 194.973
L 21.282 194.890
L 24.420 194.753 …
The border rectangle seems to make everything work the way I would expect.