PathCommand.quad constructor

PathCommand.quad(
  1. Vec2D from,
  2. Vec2D control,
  3. Vec2D to
)

Implementation

factory PathCommand.quad(Vec2D from, Vec2D control, Vec2D to) =>
    PathCommand(PathVerb.quad,
        points: List.unmodifiable([from, control, to]));