flip svg coordinate system

Viewed 49247

Is there a way to flip the SVG coordinate system so that [0,0] is in the lower left instead of the upper left?

9 Answers

What I did normally is drawing/putting the coordinate at the negative value of y-axis on the cartesian plane. Later on transfer the coordinate by replacing the negative value of y-axis into positive value.

Related