PathCmd.cubicTo constructor

PathCmd.cubicTo(
  1. Vec2 c1,
  2. Vec2 c2,
  3. Vec2 p
)

Implementation

factory PathCmd.cubicTo(Vec2 c1, Vec2 c2, Vec2 p) =>
    PathCmd._(PathVerb.cubicTo, p, c1, c2);