@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
49 lines (43 loc) • 1.48 kB
text/typescript
/**
* Creates a CAD box.
*
*
*/
import {CADSopNode} from './_BaseCAD';
import {NodeParamsConfig, ParamConfig} from '../utils/params/ParamsConfig';
import {SopType} from '../../poly/registers/nodes/types/Sop';
import {step} from '../../../core/geometry/modules/cad/CadConstant';
import {CadLoader} from '../../../core/geometry/modules/cad/CadLoader';
import {cadShapeTranslate} from '../../../core/geometry/modules/cad/toObject3D/CadShapeCommon';
import {Vector3} from 'three';
const size = new Vector3();
const centerOffset = new Vector3();
class CADBoxSopParamsConfig extends NodeParamsConfig {
/** @param size */
size = ParamConfig.FLOAT(1, {
range: [0, 10],
rangeLocked: [true, false],
step,
});
/** @param sizes */
sizes = ParamConfig.VECTOR3([1, 1, 1]);
/** @param center */
center = ParamConfig.VECTOR3([0, 0, 0]);
}
const ParamsConfig = new CADBoxSopParamsConfig();
export class CADBoxSopNode extends CADSopNode<CADBoxSopParamsConfig> {
override readonly paramsConfig = ParamsConfig;
static override type() {
return SopType.CAD_BOX;
}
override async cook() {
const oc = await CadLoader.core(this);
size.copy(this.pv.sizes).multiplyScalar(this.pv.size);
const api = new oc.BRepPrimAPI_MakeBox_2(size.x, size.y, size.z);
centerOffset.copy(size).multiplyScalar(-0.5);
const centered = cadShapeTranslate(api.Shape(), centerOffset);
const shape = cadShapeTranslate(centered, this.pv.center);
api.delete();
this.setCADShape(shape);
}
}