Is it possible to convert svg/`ImageVector` `arcTo...
# compose
m
Is it possible to convert svg/`ImageVector`
arcTo
to Canvas
Path
arcTo
in Compose ? Specially in cases where
x-axis-rotation
in svg is not 0
1
Already exists in skiko for non android targets:
Copy code
path.asSkiaPath().ellipticalArcTo(
        rx = rx,
        ry = ry,
        xAxisRotate = xAxisRotate,
        arc = PathEllipseArc.SMALLER,
        direction = PathDirection.CLOCKWISE,
        x = x1,
        y = y1
    )