import { GaussianRngFn } from "./rng.js"; import { DistortSegmentOptions } from "./distort-segment.js"; import { PointsAndWeights } from "./types.js"; //#region src/distort-poly.d.ts interface DistortPolyOptions extends DistortSegmentOptions { blurWeightsOnDistort?: boolean; gaussRng?: GaussianRngFn; wiggle?: boolean; } declare const distortPolygon: (pnw: PointsAndWeights, options?: DistortPolyOptions) => PointsAndWeights; declare const distortPolyline: (pnw: PointsAndWeights, options?: DistortPolyOptions) => PointsAndWeights; //#endregion export { DistortPolyOptions, distortPolygon, distortPolyline }; //# sourceMappingURL=distort-poly.d.ts.map