Point
interface Point {
path: Path
offset: number
}Static methods
Retrieval methods
Point.compare(point: Point, another: Point) => -1 | 0 | 1
Check methods
Point.isAfter(point: Point, another: Point) => boolean
Point.isBefore(point: Point, another: Point) => boolean
Point.equals(point: Point, another: Point) => boolean
Point.isPoint(value: any) => value is Point
Transform methods
Point.transform(point: Point, op: Operation, options?) => Point | null
Last updated