I used the guides on a GIMP file to create a path which is just straight lines - no curves or anything. However, when I export the path, the SVG code uses "C" the curve indicator to draw the path. So part of the code looks like this:
<path id="Unnamed"
fill="none" stroke="black" stroke-width="1"
d="M 400.00,1230.00
C 400.00,1230.00 328.00,1230.00 328.00,1230.00
328.00,1230.00 328.00,962.00 328.00,962.00
...
Z"
</path>
I want to strip out the coordinates that have been exported in this file and use them for a bunch of other things, and its obviously a trivial matter to handle the "C" format, but I"m wondering why it used C and not L and if I can get the load time faster on really complex paths if the .svg file used L.