Skip to content

Commit

Permalink
chore: update tutorials URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
agviegas committed Jun 6, 2024
1 parent 630a314 commit 8d21c3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/assets/ifcPropertiesManager.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/assets/ifcRelationsIndexer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/src/ifc/IfcPropertiesManager/example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as OBC from "../..";
const components = new OBC.Components();
const ifcLoader = components.get(OBC.IfcLoader);
await ifcLoader.setup();
const file = await fetch("/resources/small.ifc");
const file = await fetch("https://thatopen.github.io/engine_components/resources/small.ifc");
const buffer = await file.arrayBuffer();
const model = await ifcLoader.load(new Uint8Array(buffer));

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/ifc/IfcRelationsIndexer/example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ world.scene.three.background = null;

const ifcLoader = components.get(OBC.IfcLoader);
await ifcLoader.setup();
const file = await fetch("/resources/small.ifc");
const file = await fetch("https://thatopen.github.io/engine_components/resources/small.ifc");
const buffer = await file.arrayBuffer();
const typedArray = new Uint8Array(buffer);
const model = await ifcLoader.load(typedArray);
Expand Down

0 comments on commit 8d21c3e

Please sign in to comment.