jsketcher/modules/3d-party/primitive_box/index.ts
2021-09-19 21:20:08 +00:00

56 lines
1.8 KiB
TypeScript

import { ApplicationContext } from 'context';
import { MBrepShell } from '../../../web/app/cad/model/mshell';
import { roundValueForPresentation as r } from '../../../web/app/cad/craft/operationHelper';
import { occ2brep } from '../../../web/app/cad/occ/occ2models';
export const primitive_box = {
id: 'primitive_box',
label: 'primitive_box',
icon: 'img/cad/extrude',
info: 'primitive_box',
mutualExclusiveFields: [],
paramsInfo: ({ boxX, boxY, boxZ }) => `(${r(boxX)} ${r(boxY)}) ${r(boxZ)})`,
run: ({ boxX, boxY, boxZ }, ctx: ApplicationContext) => {
//const occObj = createCylinder(diameter, height, ctx.occService.occContext);
const oc = ctx.occService.occContext;
//const myLocation = new oc.gp_Pnt_3(0, 0, 0);
//const cylinderCenterline = oc.gp.DZ();
//const cylinderOrientationAndLocation = new oc.gp_Ax2_3(myLocation, cylinderCenterline);
console.log(boxX, boxY, boxZ, oc.BRepPrimAPI_MakeBox_1(boxX, boxY, boxZ))
let myBody = new oc.BRepPrimAPI_MakeBox_1(boxX, boxY, boxZ );
//let myBody = new oc.BRepPrimAPI_Make
const aRes = new oc.TopoDS_Compound();
const aBuilder = new oc.BRep_Builder();
aBuilder.MakeCompound(aRes);
aBuilder.Add(aRes, myBody.Shape());
const mobject = new MBrepShell(occ2brep(aRes, ctx.occService.occContext));
return {
consumed: [],
created: [mobject]
};
},
schema: {
boxX: {
type: 'number',
defaultValue: 200,
label: 'X'
},
boxY: {
type: 'number',
defaultValue: 280,
label: 'Y'
},
BoxZ: {
type: 'number',
defaultValue: 280,
label: 'Z'
},
}
}