@tscircuit/3d-viewer 0.0.485 → 0.0.486
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30825,7 +30825,7 @@ import * as THREE16 from "three";
|
|
|
30825
30825
|
// package.json
|
|
30826
30826
|
var package_default = {
|
|
30827
30827
|
name: "@tscircuit/3d-viewer",
|
|
30828
|
-
version: "0.0.
|
|
30828
|
+
version: "0.0.485",
|
|
30829
30829
|
main: "./dist/index.js",
|
|
30830
30830
|
module: "./dist/index.js",
|
|
30831
30831
|
type: "module",
|
|
@@ -36292,10 +36292,10 @@ function isCircleHole(hole) {
|
|
|
36292
36292
|
return hole.hole_shape === "circle" && typeof hole.hole_diameter === "number";
|
|
36293
36293
|
}
|
|
36294
36294
|
function isPillHole(hole) {
|
|
36295
|
-
return
|
|
36295
|
+
return hole.hole_shape === "pill" && typeof hole.hole_width === "number" && typeof hole.hole_height === "number";
|
|
36296
36296
|
}
|
|
36297
36297
|
function isRotatedPillHole(hole) {
|
|
36298
|
-
return
|
|
36298
|
+
return hole.hole_shape === "rotated_pill" && typeof hole.hole_width === "number" && typeof hole.hole_height === "number" && typeof hole.ccw_rotation === "number";
|
|
36299
36299
|
}
|
|
36300
36300
|
function processNonPlatedHolesForManifold(Manifold, circuitJson, pcbThickness, manifoldInstancesForCleanup) {
|
|
36301
36301
|
const nonPlatedHoleBoardDrills = [];
|