LineTo
class LineTo(values: List<String>, isRelative: Boolean, minified: Boolean) : PathNodes, CoordinatePoint(source)
The LineTo class represents the SVG/AVG "line to" command used for creating a straight line.
It's a type of PathNodes which holds SVG/AVG command parameters.
The line is defined by destination point coordinates x and y. The origin of these coordinates can be absolute or relative based on the isRelative flag. If isRelative is true, x and y are treated as relative coordinates. Otherwise, they are treated as absolute.
The class contains an overridden materialize function which returns a String representation of the SVG/AVG command in the form required by the Compose path functions.