import { Modifier } from './Modifier'; /** * * @category Modifiers.Settings * @interface IMirrorSettings */ export interface IMirrorSettings { x?: boolean; y?: boolean; } /** * Reflects the shape on the x and y axes * * @category Modifiers * @class Mirror * @extends {Modifier} */ declare class Mirror extends Modifier { private x; private y; constructor(args?: IMirrorSettings); apply(buffer: Float32Array, bClosed: boolean): Float32Array; } export { Mirror }; //# sourceMappingURL=Mirror.d.ts.map