examples/experimental/bezier/src/bezier-curve-layer/README.md
This layer renders qudratic bezier curves. Right now it accepts only one control point.
import BezierCurveLayer from './bezier-curve-layer';
Inherits from all Base Layer properties.
getSourcePosition (Function, optional)d => d.sourcePositionEach point is defined as an array of three numbers: [x, y, z].
getTargetPosition (Function, optional)d => d.targetPositionEach point is defined as an array of three numbers: [x, y, z].
getControlPoint (Function, optional)d => d.controlPointEach point is defined as an array of three numbers: [x, y, z].
getColor (Function|Array, optional)[0, 0, 0, 255]The rgba color is in the format of [r, g, b, [a]]. Each channel is a number between 0-255 and a is 255 if not supplied.