forked from kovacsv/occt-import-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package.json and some test files.
- Loading branch information
Showing
69 changed files
with
56,096 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "occt-import-js", | ||
"version": "0.0.1", | ||
"description": "Javascript interface for the occt library.", | ||
"license": "LGPL-2.1", | ||
"main": "./dist/occt-import-js.js", | ||
"repository": "github:kovacsv/occt-import-js", | ||
"keywords": [ | ||
"3d", | ||
"model", | ||
"converter" | ||
], | ||
"devDependencies": { | ||
"mocha": "^8.3.2" | ||
}, | ||
"scripts": { | ||
"test": "mocha test/test.js" | ||
}, | ||
"dependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
let fs = require ('fs'); | ||
const occtImportJS = require ('../dist/occt-import-js.js')(); | ||
|
||
occtImportJS.then ((occt) => { | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var fs = require ('fs'); | ||
var path = require ('path'); | ||
var assert = require ('assert'); | ||
|
||
describe ('Importer', function () { | ||
|
||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.