├── .gitignore ├── README.md ├── package.json ├── screenshot.png ├── src ├── common │ ├── openCascadeHelper.js │ └── visualize.js ├── demos │ ├── bottle - basic │ │ ├── index.html │ │ ├── index.js │ │ └── library.js │ ├── bottle - visualize │ │ ├── index.html │ │ └── index.js │ └── polygon │ │ ├── index.html │ │ ├── index.js │ │ └── library.js └── index.html ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/common/openCascadeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/common/openCascadeHelper.js -------------------------------------------------------------------------------- /src/common/visualize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/common/visualize.js -------------------------------------------------------------------------------- /src/demos/bottle - basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/bottle - basic/index.html -------------------------------------------------------------------------------- /src/demos/bottle - basic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/bottle - basic/index.js -------------------------------------------------------------------------------- /src/demos/bottle - basic/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/bottle - basic/library.js -------------------------------------------------------------------------------- /src/demos/bottle - visualize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/bottle - visualize/index.html -------------------------------------------------------------------------------- /src/demos/bottle - visualize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/bottle - visualize/index.js -------------------------------------------------------------------------------- /src/demos/polygon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/polygon/index.html -------------------------------------------------------------------------------- /src/demos/polygon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/polygon/index.js -------------------------------------------------------------------------------- /src/demos/polygon/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/demos/polygon/library.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/src/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donalffons/opencascade.js-examples/HEAD/yarn.lock --------------------------------------------------------------------------------