jsketcher/web/app/cad/craft/schema/common/BooleanDefinition.ts
2022-06-25 15:19:47 -07:00

12 lines
202 B
TypeScript

import {MObject} from "cad/model/mobject";
export type BooleanKind = 'NONE' | 'UNION' | 'SUBTRACT' | 'INTERSECT';
export interface BooleanDefinition {
kind: BooleanKind;
targets: MObject[];
}