mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
126 lines
2.7 KiB
TypeScript
126 lines
2.7 KiB
TypeScript
import {ApplicationContext} from 'cad/context';
|
|
import {roundValueForPresentation as r} from 'cad/craft/operationHelper';
|
|
import {EntityKind} from "cad/model/entities";
|
|
import {BooleanDefinition} from "cad/craft/schema/common/BooleanDefinition";
|
|
import {OperationDescriptor} from "cad/craft/operationBundle";
|
|
import CSys from "math/csys";
|
|
import {MDatum} from "cad/model/mdatum";
|
|
import {ExpectedOrderProductionAnalyzer} from "cad/craft/production/productionAnalyzer";
|
|
|
|
|
|
interface PrimitiveBoxParams {
|
|
x: number,
|
|
y: number,
|
|
z: number,
|
|
locations: MDatum,
|
|
boolean: BooleanDefinition,
|
|
}
|
|
|
|
export const PrimitiveBoxOperation: OperationDescriptor<PrimitiveBoxParams> = {
|
|
id: 'BOX',
|
|
label: 'Box',
|
|
icon: 'img/cad/cube',
|
|
info: 'Primitive Box',
|
|
path:__dirname,
|
|
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;
|
|
|
|
const csys = params.locations?.csys || CSys.ORIGIN;
|
|
|
|
oci.box("box",
|
|
"-min", csys.origin.x, csys.origin.y, csys.origin.z,
|
|
"-size", params.x, params.y, params.z,
|
|
"-dir", csys.z.x, csys.z.y, csys.z.z,
|
|
"-xdir", csys.x.x, csys.x.y, csys.x.z
|
|
);
|
|
|
|
const box = occ.io.getShell("box", new ExpectedOrderProductionAnalyzer(
|
|
[
|
|
{
|
|
id: 'F:LEFT',
|
|
productionInfo: {
|
|
role: 'sweep'
|
|
}
|
|
},
|
|
{
|
|
id: 'F:RIGHT',
|
|
productionInfo: {
|
|
role: 'sweep'
|
|
}
|
|
},
|
|
{
|
|
id: 'F:BASE',
|
|
productionInfo: {
|
|
role: 'base'
|
|
}
|
|
},
|
|
{
|
|
id: 'F:LID',
|
|
productionInfo: {
|
|
role: 'lid'
|
|
}
|
|
},
|
|
{
|
|
id: 'F:BACK',
|
|
productionInfo: {
|
|
role: 'sweep'
|
|
}
|
|
},
|
|
{
|
|
id: 'F:FRONT',
|
|
productionInfo: {
|
|
role: 'sweep'
|
|
}
|
|
}
|
|
],
|
|
[],
|
|
[]
|
|
));
|
|
|
|
return occ.utils.applyBooleanModifier([box], params.boolean);
|
|
},
|
|
}
|