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