transformed method
Transform an edge with a function (on Point
Implementation
@override
PathEdge transformed(Point<double> Function(Point<double>) transform) {
return CubicEdge(
from: transform(from),
to: transform(to),
positive: positive,
curveAngle: curveAngle,
curveSize: curveSize,
bulbousness: bulbousness,
twist: twist);
}