an array of 4 objects, one for each quadratic Bezier with a, b, and c properties
GreenSock Docs (HTML5/JS)
BezierPlugin.cubicToQuadratic()
BezierPlugin.cubicToQuadratic( a:Number, b:Number, c:Number, d:Number ) : Array
[static] Using the fixed midpoint approach, we return an array of 4 quadratic Beziers that closely approximates the cubic Bezier data provided.
Parameters
a: Number
starting anchor of the cubic Bezier
b: Number
first control point of the cubic Bezier
c: Number
second control point of the cubic Bezier
d: Number
final anchor of the cubic Bezier
Returns : Array

Details
Using the fixed midpoint approach, we return an array of 4 quadratic Beziers that closely approximates the cubic Bezier data provided. Each quadratic Bezier object contains a, b,
and c
properties where a
is the starting anchor value, b
is the control point, and c
is the ending anchor value.