paintPathWithTransform static method
void
paintPathWithTransform({})
Implementation
static void paintPathWithTransform({
required Canvas canvas,
required Size size,
required Path path,
double scale = 1.0,
double rotation = 0.0,
Matrix4? matrix,
required Paint paint,
}) {
final processedPath = transformPath(
size: size,
path: path,
scale: scale,
rotation: rotation,
matrix: matrix,
);
canvas.drawPath(processedPath, paint);
}