My task is to develop an algorithm that fits different kinds of curves onto a given point-sequence in 2 dimensional space.
To be able to test my algorithm, I have chosen SVG to display the result. I have several problems with it.
As there may be very different inputs and outputs of my algorithm, it is essential that I could view the generated SVG files with the ability to zoom in!
But a path in SVG can be displayed only with a certain width. If I zoom in, then the width of the path is getting wider. I would like the width to be for example 1 pixel at all zoom levels. Is there a solution for this?
Also: can SVG display points? Yes, simple, raw points.? I have found that it can not.
Thank