Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
544 B
Plaintext
15 lines
544 B
Plaintext
import { Vector } from './vector';
|
|
import { IPath, PathType, Path } from './path';
|
|
export declare class BezierCurve implements IPath {
|
|
type: PathType;
|
|
start: Vector;
|
|
startControl: Vector;
|
|
endControl: Vector;
|
|
end: Vector;
|
|
constructor(start: Vector, startControl: Vector, endControl: Vector, end: Vector);
|
|
subdivide(t: number, firstHalf: boolean): BezierCurve;
|
|
add(deltaX: number, deltaY: number): BezierCurve;
|
|
reverse(): BezierCurve;
|
|
}
|
|
export declare const isBezierCurve: (path: Path) => path is BezierCurve;
|