import { IPoint2D } from "./IPoint2D"; /** * Cubic bezier control points */ export interface ICubicBezierControl { c1: IPoint2D; c2: IPoint2D; }