Skip to content

Commit b4e330a

Browse files
memory cleane ups now possible on occt entities and update to 0.9.25 packages
1 parent 5099697 commit b4e330a

File tree

15 files changed

+700
-479
lines changed

15 files changed

+700
-479
lines changed

angular/laptop-holder/package-lock.json

+27-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/laptop-holder/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@angular/platform-browser": "13.3.0",
2020
"@angular/platform-browser-dynamic": "13.3.0",
2121
"@angular/router": "13.3.0",
22-
"bitbybit-core": "0.9.24",
22+
"bitbybit-core": "0.9.25",
2323
"rxjs": "7.5.5",
2424
"tslib": "2.3.1",
2525
"zone.js": "0.11.5"

angular/laptop-holder/src/app/laptop.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { BitByBitBase, Base, BabylonScene, Draw } from "bitbybit-core";
2-
import { OCCT } from "bitbybit-core/lib/api/bitbybit/occt/occt";
2+
import { OCCTW } from "bitbybit-core/lib/api/bitbybit/occt/occt";
33
import * as Inputs from "bitbybit-core/lib/api/inputs";
44
export class LaptopLogic {
55

66
private bitbybit: BitByBitBase;
7-
private occt: OCCT
7+
private occt: OCCTW;
88

99
private laptops: Laptop[] = [
1010
{
@@ -36,7 +36,7 @@ export class LaptopLogic {
3636

3737
constructor(bitbybit: BitByBitBase) {
3838
this.bitbybit = bitbybit;
39-
this.occt = bitbybit.occt as OCCT;
39+
this.occt = bitbybit.occt;
4040
}
4141
async renderLaptops(laptops) {
4242

node/basic/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/basic/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"license": "MIT",
1313
"type": "module",
1414
"dependencies": {
15-
"bitbybit-occt": "0.9.24"
15+
"bitbybit-occt": "0.9.25"
1616
},
1717
"devDependencies": {
1818
"concurrently": "^7.6.0",

node/express-app/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/express-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"dotenv": "^16.0.3",
1515
"express": "^4.18.2",
16-
"bitbybit-occt": "0.9.24"
16+
"bitbybit-occt": "0.9.25"
1717
},
1818
"type":"module",
1919
"devDependencies": {

0 commit comments

Comments
 (0)