onPathCubicTo abstract method

void onPathCubicTo(
  1. double x1,
  2. double y1,
  3. double x2,
  4. double y2,
  5. double x3,
  6. double y3,
)

A path object will draw a cubic to (x1, y1), with control point 1 as (x2, y2) and control point 2 as (x3, y3).

Implementation

void onPathCubicTo(
    double x1, double y1, double x2, double y2, double x3, double y3);