as we know there are 6 parameters with control command to draw a bezier curve
c c1.x c1.y c2.x c2.y end.x end.y
or 4 parameters with short curve command
s c.x c.y end.x end.y
How to calculate the min/max coordination for bezier curve in SVG
I use min(c1.x,c2.x,end.x) min(c1.y,c2.y,end.y), however it is not accurate.
any other accurate formula? Thanks in advance.