I have a very interesting problem at hand. In VML while describing the traversed path of a shape we can specify whether that shape would have a fill or stroke or not. It uses commands like ns
and nf
in the path
declaration to specify that the current set of paths would have no stroke
or no fill
. For example:
wr -21600 0 21600 43200 0 0 21600 21600 l 0 21600 ns x e
in the above VML path the command ns
specifies that the current shape would not have a stroke.
Can we do something similar in SVG?