Public
Edited
Apr 10, 2023
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
viewof tpVizSpace = new Promise((resolve) => {
resolve(html`<div class="viz-space"></div>`);
}).then((domElement) => {
let materialParams = {
width: shopbotBedDims.width,
height: shopbotBedDims.height,
thickness: shelfThickness
};
let vizSpace = new VisualizationSpace(domElement, materialParams);
invalidation.then(() => vizSpace.removeAllViz());
domElement.value = vizSpace;
return domElement;
})
Insert cell
depth = [0, 0.25, 0.5, 0.75]
Insert cell
drawPolygon = (x_, y_, r_, sides_) => {
let x = (i) => {
return r_ * Math.cos((2 * Math.PI * i) / sides_) + x_;
};
let y = (i) => {
return r_ * Math.sin((2 * Math.PI * i) / sides_) + y_;
};
let xyVals_ = [];
for (let i = 0; i < sides_; ++i) {
xyVals_.push([x(i), y(i)]);
console.log(i);
}
return xyVals_;
}
Insert cell
xyVals = drawPolygon(origin_x, origin_y, radius, sides)
Insert cell
xyPlusDepth = (xyVals_, depth_) => {
return depth_
.map((d_) => {
return xyVals_.map((xypair_) => {
return [xypair_[0], xypair_[1], d_];
});
})
.flat();
}
Insert cell
fullpathstr = (toolpath_) => {
return toolpath_.map((triple_) => {
return `M3, ${triple_[0]}, ${triple_[1]}, ${triple_[2]}`;
});
}
Insert cell
fullpath = fullpathstr(xyPlusDepth(xyVals, depth))
Insert cell
populateVizSpace(tpVizSpace, [fullpath])
Insert cell
Inputs.button("Dispatch SBP code", {
reduce: (_) => {
sendSbpCodesToMachine([[]]);
}
})
Insert cell
shelfThickness = 0.5
Insert cell
shopbotBedDims = ({
width: 12,
height: 12
})
Insert cell
import { VisualizationSpace, populateVizSpace } from "@machine-agency/minishelf"
Insert cell
import { sendSbpCodesToMachine } from "@machine-agency/quickdraw-sketch-based-milling"
Insert cell
VisualizationSpace
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more