mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 04:12:53 +01:00
56 lines
1.8 KiB
TypeScript
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'
|
|
},
|
|
}
|
|
}
|
|
|