mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
83 lines
No EOL
1.8 KiB
TypeScript
83 lines
No EOL
1.8 KiB
TypeScript
import { ApplicationContext } from 'context';
|
|
import { roundValueForPresentation as r } from 'cad/craft/operationHelper';
|
|
|
|
import { MDFCommand } from "cad/mdf/mdf";
|
|
import { EntityKind } from "cad/model/entities";
|
|
import { BooleanDefinition } from "cad/craft/schema/common/BooleanDefinition";
|
|
|
|
|
|
|
|
|
|
interface PrimitiveBoxParams {
|
|
x: Number,
|
|
y: Number,
|
|
z: Number,
|
|
locations: {},
|
|
boolean: BooleanDefinition,
|
|
}
|
|
|
|
const PrimitiveBoxOperation: MDFCommand<PrimitiveBoxParams> = {
|
|
id: 'primitive_box',
|
|
label: 'Primitive Box',
|
|
icon: 'img/cad/extrude',
|
|
info: 'Primitive Box',
|
|
paramsInfo: ({ x, y, z }) => `(${r(x)} , ${r(y)} , ${r(z)})`,
|
|
form: [
|
|
{
|
|
type: 'number',
|
|
label: 'X',
|
|
name: 'x',
|
|
defaultValue: 50,
|
|
},
|
|
{
|
|
type: 'number',
|
|
label: 'Y',
|
|
name: 'y',
|
|
defaultValue: 50,
|
|
},
|
|
{
|
|
type: 'number',
|
|
label: 'Z',
|
|
name: 'z',
|
|
defaultValue: 50,
|
|
},
|
|
{
|
|
type: 'selection',
|
|
name: 'locations',
|
|
capture: [EntityKind.DATUM],
|
|
label: 'locations',
|
|
multi: false,
|
|
optional: true,
|
|
defaultValue: {
|
|
usePreselection: true,
|
|
preselectionIndex: 0
|
|
},
|
|
},
|
|
|
|
{
|
|
type: 'boolean',
|
|
name: 'boolean',
|
|
label: 'boolean',
|
|
optional: true,
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
run: (params: PrimitiveBoxParams, ctx: ApplicationContext) => {
|
|
|
|
let occ = ctx.occService;
|
|
const oci = occ.commandInterface;
|
|
|
|
|
|
oci.box("b", params.x,params.y,params.z);
|
|
|
|
return occ.utils.applyBooleanModifier(["b"], params.boolean);
|
|
|
|
},
|
|
}
|
|
|
|
export default PrimitiveBoxOperation; |