QuadTo
class QuadTo(values: List<String>, isRelative: Boolean, minified: Boolean) : PathNodes, ControlPoint1, ControlPoint2(source)
The QuadTo class represents the SVG/AVG "quadratic Bézier curve" command
It's a type of PathNodes which holds SVG/AVG command parameters.
The x1, y1 coordinates represent the control point for the curve, while x2, y2 represent the endpoint of the curve.
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.