PathCommand.cubic constructor
Implementation
factory PathCommand.cubic(
Vec2D from, Vec2D controlOut, Vec2D controlIn, Vec2D to) =>
PathCommand(PathVerb.cubic,
points: List.unmodifiable([from, controlOut, controlIn, to]));
factory PathCommand.cubic(
Vec2D from, Vec2D controlOut, Vec2D controlIn, Vec2D to) =>
PathCommand(PathVerb.cubic,
points: List.unmodifiable([from, controlOut, controlIn, to]));