import { Point2D } from '../types'; /** * Rotate a point by the given angle. * * @param p the point * @param angle the rotation angle in radians */ export default function rotate(p: Point2D, angle: number): Point2D; //# sourceMappingURL=rotate.d.ts.map