@tscircuit/core 0.0.852 → 0.0.853
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16374,13 +16374,15 @@ var CopperPour = class extends PrimitiveComponent2 {
|
|
|
16374
16374
|
});
|
|
16375
16375
|
const solver = new CopperPourPipelineSolver(inputProblem);
|
|
16376
16376
|
const { brep_shapes } = solver.getOutput();
|
|
16377
|
+
const coveredWithSolderMask = props.coveredWithSolderMask ?? false;
|
|
16377
16378
|
for (const brep_shape of brep_shapes) {
|
|
16378
16379
|
db.pcb_copper_pour.insert({
|
|
16379
16380
|
shape: "brep",
|
|
16380
16381
|
layer: props.layer,
|
|
16381
16382
|
brep_shape,
|
|
16382
16383
|
source_net_id: net.source_net_id,
|
|
16383
|
-
subcircuit_id: subcircuit?.subcircuit_id ?? void 0
|
|
16384
|
+
subcircuit_id: subcircuit?.subcircuit_id ?? void 0,
|
|
16385
|
+
covered_with_solder_mask: coveredWithSolderMask
|
|
16384
16386
|
});
|
|
16385
16387
|
}
|
|
16386
16388
|
});
|
|
@@ -17625,7 +17627,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
17625
17627
|
var package_default = {
|
|
17626
17628
|
name: "@tscircuit/core",
|
|
17627
17629
|
type: "module",
|
|
17628
|
-
version: "0.0.
|
|
17630
|
+
version: "0.0.852",
|
|
17629
17631
|
types: "dist/index.d.ts",
|
|
17630
17632
|
main: "dist/index.js",
|
|
17631
17633
|
module: "dist/index.js",
|