import type { Point } from "../types"; /** * Interface of mapping source image points into result image points. */ export interface ForwardPixelMapper { /** * Maps source image point into result image point. * * @param x * @param y */ forwardMap(x: number, y: number): Point; }