Incorrect nesting when svg loaded
When I uploaded the svg file with 150 parts locally, only a few parts were put, everything works normally on the official website, I discovered that everything works well, but the results overlap each other, anyone know how to fix that?
I face the same problem when I generate the svg by code. For me the reason is that the x and y coordinates are all zero and thus all items overlap. For some reason the code thinks that parts that overlap are one part. I don't know why this works like this. In my case I use only rectangles so it would be fairly simple for the designer to just detect all the rects in the svg, independently of their position (x and y coordinates).
I face the same problem when I generate the svg by code. For me the reason is that the x and y coordinates are all zero and thus all items overlap. For some reason the code thinks that parts that overlap are one part. I don't know why this works like this. In my case I use only rectangles so it would be fairly simple for the designer to just detect all the rects in the svg, independently of their position (x and y coordinates).
Hi,I had face this problem recently, but I don't know how or why this problem happened, if I put this two model into ,
<polygon fill="none" stroke="#010101" stroke-miterlimit="10" points="417.568 663.337 578.295 610.095 638.726 535.021 665.6 431.968 658.295 360.611 546.442 131.189 492.979 35.0316 436.221 0 391.432 35.8316 380.284 103.137 573.221 413.221 563.526 480.621 516.832 541.968 419.863 570.063 97.8421 373.568 27.2105 389.653 0 438.116 31.2421 488.863 158.568 565.495 397.853 663.579"/> <polygon fill="none" stroke="#010101" stroke-miterlimit="10" points="586.895 606.053 628.6 526.968 607.958 155.568 504.242 28.1684 332.663 0 212.116 62.7053 8.30526 360.4 0 424.453 56.0842 453.021 115.421 434.916 290.842 119.295 362.821 87.9474 443.158 100.526 490.705 134.179 512.611 189.137 493.484 547.589 522.632 590.2 580.979 606.937"/>
And then the result will overlap , so can you tell me why this happen and I want to fix it ,thanks a lot !