AlgebraicShapeCombination.d.ts (630B)
1 import * as XYShape from "../XYShape.js"; 2 import { ConvolutionOperation } from "./PointSet.js"; 3 export declare const combineShapesContinuousContinuous: (op: ConvolutionOperation, s1: XYShape.XYShape, s2: XYShape.XYShape) => XYShape.XYShape; 4 export type ArgumentPosition = "First" | "Second"; 5 export declare const combineShapesContinuousDiscrete: (op: ConvolutionOperation, continuousShape: XYShape.XYShape, discreteShape: XYShape.XYShape, opts: { 6 discretePosition: ArgumentPosition; 7 }) => XYShape.XYShape; 8 export declare const isOrdered: (a: XYShape.XYShape) => boolean; 9 //# sourceMappingURL=AlgebraicShapeCombination.d.ts.map