13 Feb
2019
13 Feb
'19
11:26 p.m.
On Wed, Feb 13, 2019 at 11:15:41AM +0100, bryan rasmussen wrote:
As per the subject line I often notice that what comes out of inkscape and other svg capable editors uses paths to represent circles and other simple shapes. I suppose this is for some reason of code optimization (i.e code optimization in the editor not in the output SVG). Can anyone shed any light on this?
Yes, in vector graphics Bézier curves are a wonderful generalized way to create shapes. Once you have the code to do them, all the other shapes can just use the same rendering code if you represent them the same way.
The way the SVG specification is written, I'm not surprised that other SVG editors also use paths for representing basic geometrical shapes.
Bryce