├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ ├── check-release.yml │ ├── comment-on-pr.yml │ ├── enforce-labels.yml │ ├── prep-release.yml │ ├── publish-release.yml │ ├── update_galata_references.yaml │ └── update_lite_galata_references.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .readthedocs.yaml ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── binder ├── environment.yml ├── jupyter_config.json ├── postBuild └── start ├── docs ├── Makefile ├── doc-requirements.txt ├── environment.yml ├── make.bat └── source │ ├── app.rst │ ├── assets │ ├── cad_app.webp │ ├── collab.gif │ ├── commenting.gif │ ├── follow.gif │ ├── jupytercad-light-ss.png │ ├── jupytercad-screenshot.png │ ├── lab_ext.webp │ └── python_occ.gif │ ├── collab.rst │ ├── conf.py │ ├── contributing.rst │ ├── extension.rst │ ├── index.rst │ ├── install.rst │ └── python_api.rst ├── examples ├── 3M_CONNECTOR.STEP ├── ArchDetail.jcad ├── Gear.jcad ├── Notebook.ipynb ├── fan.stl ├── jcad.ipynb ├── occ.ipynb ├── pad.jcad ├── pawn.jcad ├── screwdriver.jcad └── test.jcad ├── lerna.json ├── lite ├── environment.yml ├── jupyter-lite.json └── jupyter_lite_config.json ├── package.json ├── packages ├── base │ ├── package.json │ ├── src │ │ ├── 3dview │ │ │ ├── followindicator.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── mainview.tsx │ │ │ ├── mainviewmodel.ts │ │ │ ├── mainviewwidget.tsx │ │ │ └── spinner.tsx │ │ ├── annotation │ │ │ ├── index.ts │ │ │ ├── message.tsx │ │ │ ├── model.ts │ │ │ └── view.tsx │ │ ├── commands │ │ │ ├── index.ts │ │ │ ├── operationcommands.ts │ │ │ └── tools.ts │ │ ├── console │ │ │ ├── consoleview.ts │ │ │ └── index.ts │ │ ├── formdialog.tsx │ │ ├── index.ts │ │ ├── keybindings.json │ │ ├── panelview │ │ │ ├── annotations.tsx │ │ │ ├── customarrayfield.tsx │ │ │ ├── formbuilder.tsx │ │ │ ├── header.tsx │ │ │ ├── index.ts │ │ │ ├── leftpanel.tsx │ │ │ ├── model.ts │ │ │ ├── objectproperties.tsx │ │ │ ├── objecttree.tsx │ │ │ └── rightpanel.tsx │ │ ├── sketcher │ │ │ ├── elements │ │ │ │ ├── circle.ts │ │ │ │ ├── line.ts │ │ │ │ └── point.ts │ │ │ ├── helper.tsx │ │ │ ├── index.ts │ │ │ ├── panzoom.ts │ │ │ ├── sketcherdialog.tsx │ │ │ ├── sketchermodel.ts │ │ │ ├── sketcherwidget.tsx │ │ │ └── types.ts │ │ ├── suggestion │ │ │ ├── model.ts │ │ │ ├── newForkDialog.tsx │ │ │ ├── suggestionpanel.tsx │ │ │ └── view.tsx │ │ ├── svg.d.ts │ │ ├── toolbar │ │ │ ├── index.ts │ │ │ └── widget.tsx │ │ ├── tools.ts │ │ ├── types.ts │ │ └── widget.ts │ ├── style │ │ └── icon │ │ │ ├── axes.svg │ │ │ ├── box.svg │ │ │ ├── chamfer.svg │ │ │ ├── chevron-right.svg │ │ │ ├── clipPlane.svg │ │ │ ├── cone.svg │ │ │ ├── cut.svg │ │ │ ├── cylinder.svg │ │ │ ├── exploded.svg │ │ │ ├── extrusion.svg │ │ │ ├── fillet.svg │ │ │ ├── intersection.svg │ │ │ ├── logo.svg │ │ │ ├── minimize.svg │ │ │ ├── pencil-solid.svg │ │ │ ├── sphere.svg │ │ │ ├── stl.svg │ │ │ ├── stp.svg │ │ │ ├── terminal-toolbar.svg │ │ │ ├── torus.svg │ │ │ ├── transform.svg │ │ │ ├── union.svg │ │ │ ├── video-solid.svg │ │ │ ├── visibility.svg │ │ │ ├── visibilityOff.svg │ │ │ └── wireframe.svg │ ├── tsconfig.json │ └── tsconfig.worker.json ├── occ-worker │ ├── package.json │ ├── src │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── occapi │ │ │ ├── any.ts │ │ │ ├── box.ts │ │ │ ├── brepIO.ts │ │ │ ├── chamfer.ts │ │ │ ├── common.ts │ │ │ ├── cone.ts │ │ │ ├── cut.ts │ │ │ ├── cylinder.ts │ │ │ ├── extrude.ts │ │ │ ├── fillet.ts │ │ │ ├── fuse.ts │ │ │ ├── geomCircle.ts │ │ │ ├── geomLineSegment.ts │ │ │ ├── index.ts │ │ │ ├── intersection.ts │ │ │ ├── loadObjectFile.ts │ │ │ ├── makeShapeFromMesh.ts │ │ │ ├── operatorCache.ts │ │ │ ├── postOperator.ts │ │ │ ├── sketchObject.ts │ │ │ ├── sphere.ts │ │ │ ├── stepIO.ts │ │ │ ├── stlIO.ts │ │ │ └── torus.ts │ │ ├── occparser.ts │ │ ├── occworker.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── worker.ts │ ├── tsconfig.json │ └── worker.webpack.config.js ├── opencascade │ ├── README.md │ ├── build.yml │ ├── build_opencascade_wasm.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── jupytercad.opencascade.d.ts │ │ └── jupytercad.opencascade.wasm.d.ts │ └── tsconfig.json └── schema │ ├── package.json │ ├── schema.js │ ├── src │ ├── doc.ts │ ├── index.ts │ ├── interfaces.ts │ ├── model.ts │ ├── schema │ │ ├── any.json │ │ ├── box.json │ │ ├── chamfer.json │ │ ├── cone.json │ │ ├── cut.json │ │ ├── cylinder.json │ │ ├── extrusion.json │ │ ├── fillet.json │ │ ├── fuse.json │ │ ├── geomCircle.json │ │ ├── geomLineSegment.json │ │ ├── intersection.json │ │ ├── jcad.json │ │ ├── placement.json │ │ ├── postOperator.json │ │ ├── sketch.json │ │ ├── sphere.json │ │ └── torus.json │ ├── token.ts │ └── types.ts │ └── tsconfig.json ├── pyproject.toml ├── python ├── jupytercad │ ├── LICENSE │ ├── README.md │ ├── jupytercad │ │ └── __init__.py │ ├── pyproject.toml │ ├── scripts │ │ └── bump-version.py │ └── setup.py ├── jupytercad_app │ ├── .gitignore │ ├── .prettierignore │ ├── LICENSE │ ├── README.md │ ├── RELEASE.md │ ├── install.json │ ├── jupyter-config │ │ └── server-config │ │ │ └── jupytercad_app.json │ ├── jupytercad_app │ │ ├── __init__.py │ │ ├── cadapp.py │ │ ├── templates │ │ │ └── index.html │ │ └── utils.py │ ├── package.json │ ├── pyproject.toml │ ├── scripts │ │ └── bump-version.py │ ├── setup.py │ ├── src │ │ ├── app │ │ │ ├── app.ts │ │ │ ├── plugins │ │ │ │ ├── browser │ │ │ │ │ └── index.ts │ │ │ │ ├── launcher │ │ │ │ │ └── index.ts │ │ │ │ ├── mainmenu │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── menuWidget.ts │ │ │ │ │ ├── titleWidget.tsx │ │ │ │ │ └── userWidget.tsx │ │ │ │ └── paths │ │ │ │ │ └── index.ts │ │ │ └── shell.ts │ │ ├── bootstrap.ts │ │ ├── main.ts │ │ └── sharedscope.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── tsconfig.json │ └── webpack.config.js ├── jupytercad_core │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── extension.webpack.config.js │ ├── install.json │ ├── jupyter-config │ │ └── server-config │ │ │ └── jupytercad_core.json │ ├── jupytercad_core │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── jcad_ydoc.py │ │ ├── schema │ │ │ └── __init__.py │ │ ├── step_ydoc.py │ │ └── stl_ydoc.py │ ├── package.json │ ├── pyproject.toml │ ├── schema │ │ └── jupytercad-settings.json │ ├── scripts │ │ └── bump-version.py │ ├── setup.py │ ├── src │ │ ├── externalcommand.ts │ │ ├── factory.ts │ │ ├── index.ts │ │ ├── jcadplugin │ │ │ ├── modelfactory.ts │ │ │ └── plugins.ts │ │ ├── plugin.ts │ │ ├── schemaregistry.ts │ │ ├── stepplugin │ │ │ ├── model.ts │ │ │ ├── modelfactory.ts │ │ │ └── plugins.ts │ │ ├── stlplugin │ │ │ ├── model.ts │ │ │ ├── modelfactory.ts │ │ │ ├── plugins.ts │ │ │ └── worker.ts │ │ └── workerregistry.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── jupytercad_lab │ ├── .gitignore │ ├── .prettierignore │ ├── LICENSE │ ├── README.md │ ├── install.json │ ├── jupytercad_lab │ │ ├── __init__.py │ │ └── notebook │ │ │ ├── __init__.py │ │ │ ├── cad_document.py │ │ │ ├── utils.py │ │ │ └── y_connector.py │ ├── package.json │ ├── pyproject.toml │ ├── scripts │ │ └── bump-version.py │ ├── setup.py │ ├── src │ │ ├── index.ts │ │ └── notebookrenderer.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ └── tsconfig.json ├── jupytercad_lite │ ├── LICENSE │ ├── README.md │ ├── jupytercad │ │ └── __init__.py │ ├── pyproject.toml │ ├── scripts │ │ └── bump-version.py │ └── setup.py └── jupyverse │ ├── COPYING.md │ ├── README.md │ ├── fps_jupytercad │ ├── __init__.py │ ├── main.py │ ├── models.py │ ├── py.typed │ └── routes.py │ ├── pyproject.toml │ └── scripts │ └── bump-version.py ├── requirements-build.txt ├── scripts ├── build_packages.py └── dev-install.py ├── tsconfig.eslint.json ├── tsconfigbase.json ├── ui-tests ├── jupyter_server_test_config.py ├── package.json ├── playwright-lite.config.js ├── playwright.config.js ├── tests │ ├── lite.spec.ts │ ├── lite.spec.ts-snapshots │ │ ├── Render-3M-CONNECTOR-STEP-chromium-linux.png │ │ ├── Render-fan-stl-chromium-linux.png │ │ ├── Render-notebook-chromium-linux.png │ │ └── Render-test-jcad-chromium-linux.png │ ├── notebook.spec.ts │ ├── notebook.spec.ts-snapshots │ │ ├── dark-Notebook-ipynb-cell-0-chromium-linux.png │ │ ├── dark-Notebook-ipynb-cell-1-chromium-linux.png │ │ ├── dark-Notebook-ipynb-cell-2-chromium-linux.png │ │ ├── dark-Notebook-ipynb-cell-3-chromium-linux.png │ │ ├── light-Notebook-ipynb-cell-0-chromium-linux.png │ │ ├── light-Notebook-ipynb-cell-1-chromium-linux.png │ │ ├── light-Notebook-ipynb-cell-2-chromium-linux.png │ │ └── light-Notebook-ipynb-cell-3-chromium-linux.png │ ├── notebooks │ │ └── Notebook.ipynb │ ├── sketcher.spec.ts │ ├── sketcher.spec.ts-snapshots │ │ ├── Sketcher-Circle-test-jcad-chromium-linux.png │ │ └── Sketcher-Display-test-jcad-chromium-linux.png │ ├── tree.spec.ts │ ├── tree.spec.ts-snapshots │ │ └── Tree-Display-test-jcad-chromium-linux.png │ ├── ui.spec.ts │ └── ui.spec.ts-snapshots │ │ ├── Exploded-test-jcad-chromium-linux.png │ │ ├── JCAD-Accept-Suggestion-chromium-linux.png │ │ ├── JCAD-Console-chromium-linux.png │ │ ├── JCAD-Delete-Suggestion-chromium-linux.png │ │ ├── JCAD-Modified-chromium-linux.png │ │ ├── JCAD-New-chromium-linux.png │ │ ├── JCAD-Redo-chromium-linux.png │ │ ├── JCAD-Undo-chromium-linux.png │ │ ├── MultiSelect-Cut-test-jcad-chromium-linux.png │ │ ├── MultiSelect-test-jcad-chromium-linux.png │ │ ├── Operator-Add-test-jcad-chromium-linux.png │ │ ├── Operator-Edit-test-jcad-chromium-linux.png │ │ ├── Operator-Remove-test-jcad-chromium-linux.png │ │ ├── Render-3M-CONNECTOR-STEP-chromium-linux.png │ │ ├── Render-fan-stl-chromium-linux.png │ │ └── Render-test-jcad-chromium-linux.png └── yarn.lock └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/comment-on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/comment-on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/enforce-labels.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/update_galata_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/update_galata_references.yaml -------------------------------------------------------------------------------- /.github/workflows/update_lite_galata_references.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.github/workflows/update_lite_galata_references.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.prettierrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ./python/jupytercad/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/RELEASE.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/jupyter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/binder/jupyter_config.json -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/binder/start -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/doc-requirements.txt -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/app.rst -------------------------------------------------------------------------------- /docs/source/assets/cad_app.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/cad_app.webp -------------------------------------------------------------------------------- /docs/source/assets/collab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/collab.gif -------------------------------------------------------------------------------- /docs/source/assets/commenting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/commenting.gif -------------------------------------------------------------------------------- /docs/source/assets/follow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/follow.gif -------------------------------------------------------------------------------- /docs/source/assets/jupytercad-light-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/jupytercad-light-ss.png -------------------------------------------------------------------------------- /docs/source/assets/jupytercad-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/jupytercad-screenshot.png -------------------------------------------------------------------------------- /docs/source/assets/lab_ext.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/lab_ext.webp -------------------------------------------------------------------------------- /docs/source/assets/python_occ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/assets/python_occ.gif -------------------------------------------------------------------------------- /docs/source/collab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/collab.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/extension.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/python_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/docs/source/python_api.rst -------------------------------------------------------------------------------- /examples/3M_CONNECTOR.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/3M_CONNECTOR.STEP -------------------------------------------------------------------------------- /examples/ArchDetail.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/ArchDetail.jcad -------------------------------------------------------------------------------- /examples/Gear.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/Gear.jcad -------------------------------------------------------------------------------- /examples/Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/Notebook.ipynb -------------------------------------------------------------------------------- /examples/fan.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/fan.stl -------------------------------------------------------------------------------- /examples/jcad.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/jcad.ipynb -------------------------------------------------------------------------------- /examples/occ.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/occ.ipynb -------------------------------------------------------------------------------- /examples/pad.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/pad.jcad -------------------------------------------------------------------------------- /examples/pawn.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/pawn.jcad -------------------------------------------------------------------------------- /examples/screwdriver.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/screwdriver.jcad -------------------------------------------------------------------------------- /examples/test.jcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/examples/test.jcad -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/lerna.json -------------------------------------------------------------------------------- /lite/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/lite/environment.yml -------------------------------------------------------------------------------- /lite/jupyter-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/lite/jupyter-lite.json -------------------------------------------------------------------------------- /lite/jupyter_lite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/lite/jupyter_lite_config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/package.json -------------------------------------------------------------------------------- /packages/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/package.json -------------------------------------------------------------------------------- /packages/base/src/3dview/followindicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/followindicator.tsx -------------------------------------------------------------------------------- /packages/base/src/3dview/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/helpers.ts -------------------------------------------------------------------------------- /packages/base/src/3dview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/index.ts -------------------------------------------------------------------------------- /packages/base/src/3dview/mainview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/mainview.tsx -------------------------------------------------------------------------------- /packages/base/src/3dview/mainviewmodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/mainviewmodel.ts -------------------------------------------------------------------------------- /packages/base/src/3dview/mainviewwidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/mainviewwidget.tsx -------------------------------------------------------------------------------- /packages/base/src/3dview/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/3dview/spinner.tsx -------------------------------------------------------------------------------- /packages/base/src/annotation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/annotation/index.ts -------------------------------------------------------------------------------- /packages/base/src/annotation/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/annotation/message.tsx -------------------------------------------------------------------------------- /packages/base/src/annotation/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/annotation/model.ts -------------------------------------------------------------------------------- /packages/base/src/annotation/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/annotation/view.tsx -------------------------------------------------------------------------------- /packages/base/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/commands/index.ts -------------------------------------------------------------------------------- /packages/base/src/commands/operationcommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/commands/operationcommands.ts -------------------------------------------------------------------------------- /packages/base/src/commands/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/commands/tools.ts -------------------------------------------------------------------------------- /packages/base/src/console/consoleview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/console/consoleview.ts -------------------------------------------------------------------------------- /packages/base/src/console/index.ts: -------------------------------------------------------------------------------- 1 | export * from './consoleview'; 2 | -------------------------------------------------------------------------------- /packages/base/src/formdialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/formdialog.tsx -------------------------------------------------------------------------------- /packages/base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/index.ts -------------------------------------------------------------------------------- /packages/base/src/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/keybindings.json -------------------------------------------------------------------------------- /packages/base/src/panelview/annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/annotations.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/customarrayfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/customarrayfield.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/formbuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/formbuilder.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/header.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/index.ts -------------------------------------------------------------------------------- /packages/base/src/panelview/leftpanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/leftpanel.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/model.ts -------------------------------------------------------------------------------- /packages/base/src/panelview/objectproperties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/objectproperties.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/objecttree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/objecttree.tsx -------------------------------------------------------------------------------- /packages/base/src/panelview/rightpanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/panelview/rightpanel.tsx -------------------------------------------------------------------------------- /packages/base/src/sketcher/elements/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/elements/circle.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/elements/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/elements/line.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/elements/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/elements/point.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/helper.tsx -------------------------------------------------------------------------------- /packages/base/src/sketcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/index.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/panzoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/panzoom.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/sketcherdialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/sketcherdialog.tsx -------------------------------------------------------------------------------- /packages/base/src/sketcher/sketchermodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/sketchermodel.ts -------------------------------------------------------------------------------- /packages/base/src/sketcher/sketcherwidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/sketcherwidget.tsx -------------------------------------------------------------------------------- /packages/base/src/sketcher/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/sketcher/types.ts -------------------------------------------------------------------------------- /packages/base/src/suggestion/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/suggestion/model.ts -------------------------------------------------------------------------------- /packages/base/src/suggestion/newForkDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/suggestion/newForkDialog.tsx -------------------------------------------------------------------------------- /packages/base/src/suggestion/suggestionpanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/suggestion/suggestionpanel.tsx -------------------------------------------------------------------------------- /packages/base/src/suggestion/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/suggestion/view.tsx -------------------------------------------------------------------------------- /packages/base/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/svg.d.ts -------------------------------------------------------------------------------- /packages/base/src/toolbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './widget'; 2 | -------------------------------------------------------------------------------- /packages/base/src/toolbar/widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/toolbar/widget.tsx -------------------------------------------------------------------------------- /packages/base/src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/tools.ts -------------------------------------------------------------------------------- /packages/base/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/types.ts -------------------------------------------------------------------------------- /packages/base/src/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/src/widget.ts -------------------------------------------------------------------------------- /packages/base/style/icon/axes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/axes.svg -------------------------------------------------------------------------------- /packages/base/style/icon/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/box.svg -------------------------------------------------------------------------------- /packages/base/style/icon/chamfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/chamfer.svg -------------------------------------------------------------------------------- /packages/base/style/icon/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/chevron-right.svg -------------------------------------------------------------------------------- /packages/base/style/icon/clipPlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/clipPlane.svg -------------------------------------------------------------------------------- /packages/base/style/icon/cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/cone.svg -------------------------------------------------------------------------------- /packages/base/style/icon/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/cut.svg -------------------------------------------------------------------------------- /packages/base/style/icon/cylinder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/cylinder.svg -------------------------------------------------------------------------------- /packages/base/style/icon/exploded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/exploded.svg -------------------------------------------------------------------------------- /packages/base/style/icon/extrusion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/extrusion.svg -------------------------------------------------------------------------------- /packages/base/style/icon/fillet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/fillet.svg -------------------------------------------------------------------------------- /packages/base/style/icon/intersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/intersection.svg -------------------------------------------------------------------------------- /packages/base/style/icon/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/logo.svg -------------------------------------------------------------------------------- /packages/base/style/icon/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/minimize.svg -------------------------------------------------------------------------------- /packages/base/style/icon/pencil-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/pencil-solid.svg -------------------------------------------------------------------------------- /packages/base/style/icon/sphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/sphere.svg -------------------------------------------------------------------------------- /packages/base/style/icon/stl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/stl.svg -------------------------------------------------------------------------------- /packages/base/style/icon/stp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/stp.svg -------------------------------------------------------------------------------- /packages/base/style/icon/terminal-toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/terminal-toolbar.svg -------------------------------------------------------------------------------- /packages/base/style/icon/torus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/torus.svg -------------------------------------------------------------------------------- /packages/base/style/icon/transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/transform.svg -------------------------------------------------------------------------------- /packages/base/style/icon/union.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/union.svg -------------------------------------------------------------------------------- /packages/base/style/icon/video-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/video-solid.svg -------------------------------------------------------------------------------- /packages/base/style/icon/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/visibility.svg -------------------------------------------------------------------------------- /packages/base/style/icon/visibilityOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/visibilityOff.svg -------------------------------------------------------------------------------- /packages/base/style/icon/wireframe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/style/icon/wireframe.svg -------------------------------------------------------------------------------- /packages/base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/tsconfig.json -------------------------------------------------------------------------------- /packages/base/tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/base/tsconfig.worker.json -------------------------------------------------------------------------------- /packages/occ-worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/package.json -------------------------------------------------------------------------------- /packages/occ-worker/src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/actions.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/index.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/any.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/box.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/brepIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/brepIO.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/chamfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/chamfer.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/common.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/cone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/cone.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/cut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/cut.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/cylinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/cylinder.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/extrude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/extrude.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/fillet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/fillet.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/fuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/fuse.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/geomCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/geomCircle.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/geomLineSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/geomLineSegment.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/index.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/intersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/intersection.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/loadObjectFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/loadObjectFile.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/makeShapeFromMesh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/makeShapeFromMesh.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/operatorCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/operatorCache.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/postOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/postOperator.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/sketchObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/sketchObject.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/sphere.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/sphere.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/stepIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/stepIO.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/stlIO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/stlIO.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occapi/torus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occapi/torus.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occparser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occparser.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/occworker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/occworker.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/types.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/utils.ts -------------------------------------------------------------------------------- /packages/occ-worker/src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/src/worker.ts -------------------------------------------------------------------------------- /packages/occ-worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/tsconfig.json -------------------------------------------------------------------------------- /packages/occ-worker/worker.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/occ-worker/worker.webpack.config.js -------------------------------------------------------------------------------- /packages/opencascade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/README.md -------------------------------------------------------------------------------- /packages/opencascade/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/build.yml -------------------------------------------------------------------------------- /packages/opencascade/build_opencascade_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/build_opencascade_wasm.js -------------------------------------------------------------------------------- /packages/opencascade/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/package.json -------------------------------------------------------------------------------- /packages/opencascade/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/src/index.ts -------------------------------------------------------------------------------- /packages/opencascade/src/jupytercad.opencascade.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/src/jupytercad.opencascade.d.ts -------------------------------------------------------------------------------- /packages/opencascade/src/jupytercad.opencascade.wasm.d.ts: -------------------------------------------------------------------------------- 1 | export default null as any; 2 | -------------------------------------------------------------------------------- /packages/opencascade/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/opencascade/tsconfig.json -------------------------------------------------------------------------------- /packages/schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/package.json -------------------------------------------------------------------------------- /packages/schema/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/schema.js -------------------------------------------------------------------------------- /packages/schema/src/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/doc.ts -------------------------------------------------------------------------------- /packages/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/index.ts -------------------------------------------------------------------------------- /packages/schema/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/interfaces.ts -------------------------------------------------------------------------------- /packages/schema/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/model.ts -------------------------------------------------------------------------------- /packages/schema/src/schema/any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/any.json -------------------------------------------------------------------------------- /packages/schema/src/schema/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/box.json -------------------------------------------------------------------------------- /packages/schema/src/schema/chamfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/chamfer.json -------------------------------------------------------------------------------- /packages/schema/src/schema/cone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/cone.json -------------------------------------------------------------------------------- /packages/schema/src/schema/cut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/cut.json -------------------------------------------------------------------------------- /packages/schema/src/schema/cylinder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/cylinder.json -------------------------------------------------------------------------------- /packages/schema/src/schema/extrusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/extrusion.json -------------------------------------------------------------------------------- /packages/schema/src/schema/fillet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/fillet.json -------------------------------------------------------------------------------- /packages/schema/src/schema/fuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/fuse.json -------------------------------------------------------------------------------- /packages/schema/src/schema/geomCircle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/geomCircle.json -------------------------------------------------------------------------------- /packages/schema/src/schema/geomLineSegment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/geomLineSegment.json -------------------------------------------------------------------------------- /packages/schema/src/schema/intersection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/intersection.json -------------------------------------------------------------------------------- /packages/schema/src/schema/jcad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/jcad.json -------------------------------------------------------------------------------- /packages/schema/src/schema/placement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/placement.json -------------------------------------------------------------------------------- /packages/schema/src/schema/postOperator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/postOperator.json -------------------------------------------------------------------------------- /packages/schema/src/schema/sketch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/sketch.json -------------------------------------------------------------------------------- /packages/schema/src/schema/sphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/sphere.json -------------------------------------------------------------------------------- /packages/schema/src/schema/torus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/schema/torus.json -------------------------------------------------------------------------------- /packages/schema/src/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/token.ts -------------------------------------------------------------------------------- /packages/schema/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/src/types.ts -------------------------------------------------------------------------------- /packages/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/packages/schema/tsconfig.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad/LICENSE -------------------------------------------------------------------------------- /python/jupytercad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad/README.md -------------------------------------------------------------------------------- /python/jupytercad/jupytercad/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1.7" 2 | 3 | from jupytercad_lab import CadDocument # noqa 4 | -------------------------------------------------------------------------------- /python/jupytercad/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad/scripts/bump-version.py -------------------------------------------------------------------------------- /python/jupytercad/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad/setup.py -------------------------------------------------------------------------------- /python/jupytercad_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/.gitignore -------------------------------------------------------------------------------- /python/jupytercad_app/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/.prettierignore -------------------------------------------------------------------------------- /python/jupytercad_app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/LICENSE -------------------------------------------------------------------------------- /python/jupytercad_app/README.md: -------------------------------------------------------------------------------- 1 | # jupytercad_app 2 | -------------------------------------------------------------------------------- /python/jupytercad_app/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/RELEASE.md -------------------------------------------------------------------------------- /python/jupytercad_app/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/install.json -------------------------------------------------------------------------------- /python/jupytercad_app/jupyter-config/server-config/jupytercad_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/jupyter-config/server-config/jupytercad_app.json -------------------------------------------------------------------------------- /python/jupytercad_app/jupytercad_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/jupytercad_app/__init__.py -------------------------------------------------------------------------------- /python/jupytercad_app/jupytercad_app/cadapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/jupytercad_app/cadapp.py -------------------------------------------------------------------------------- /python/jupytercad_app/jupytercad_app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/jupytercad_app/templates/index.html -------------------------------------------------------------------------------- /python/jupytercad_app/jupytercad_app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/jupytercad_app/utils.py -------------------------------------------------------------------------------- /python/jupytercad_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/package.json -------------------------------------------------------------------------------- /python/jupytercad_app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad_app/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/scripts/bump-version.py -------------------------------------------------------------------------------- /python/jupytercad_app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/setup.py -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/app.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/browser/index.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/launcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/launcher/index.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/mainmenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/mainmenu/index.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/mainmenu/menuWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/mainmenu/menuWidget.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/mainmenu/titleWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/mainmenu/titleWidget.tsx -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/mainmenu/userWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/mainmenu/userWidget.tsx -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/plugins/paths/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/plugins/paths/index.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/app/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/app/shell.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/bootstrap.ts: -------------------------------------------------------------------------------- 1 | import('./main.js'); 2 | -------------------------------------------------------------------------------- /python/jupytercad_app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/main.ts -------------------------------------------------------------------------------- /python/jupytercad_app/src/sharedscope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/src/sharedscope.ts -------------------------------------------------------------------------------- /python/jupytercad_app/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/style/base.css -------------------------------------------------------------------------------- /python/jupytercad_app/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /python/jupytercad_app/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /python/jupytercad_app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/tsconfig.json -------------------------------------------------------------------------------- /python/jupytercad_app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_app/webpack.config.js -------------------------------------------------------------------------------- /python/jupytercad_core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/.gitignore -------------------------------------------------------------------------------- /python/jupytercad_core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/LICENSE -------------------------------------------------------------------------------- /python/jupytercad_core/README.md: -------------------------------------------------------------------------------- 1 | # JupyterCad Core package 2 | -------------------------------------------------------------------------------- /python/jupytercad_core/extension.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/extension.webpack.config.js -------------------------------------------------------------------------------- /python/jupytercad_core/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/install.json -------------------------------------------------------------------------------- /python/jupytercad_core/jupyter-config/server-config/jupytercad_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupyter-config/server-config/jupytercad_core.json -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/__init__.py -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/handlers.py -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/jcad_ydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/jcad_ydoc.py -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/schema/__init__.py -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/step_ydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/step_ydoc.py -------------------------------------------------------------------------------- /python/jupytercad_core/jupytercad_core/stl_ydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/jupytercad_core/stl_ydoc.py -------------------------------------------------------------------------------- /python/jupytercad_core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/package.json -------------------------------------------------------------------------------- /python/jupytercad_core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad_core/schema/jupytercad-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/schema/jupytercad-settings.json -------------------------------------------------------------------------------- /python/jupytercad_core/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/scripts/bump-version.py -------------------------------------------------------------------------------- /python/jupytercad_core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/setup.py -------------------------------------------------------------------------------- /python/jupytercad_core/src/externalcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/externalcommand.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/factory.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/index.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/jcadplugin/modelfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/jcadplugin/modelfactory.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/jcadplugin/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/jcadplugin/plugins.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/plugin.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/schemaregistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/schemaregistry.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stepplugin/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stepplugin/model.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stepplugin/modelfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stepplugin/modelfactory.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stepplugin/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stepplugin/plugins.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stlplugin/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stlplugin/model.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stlplugin/modelfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stlplugin/modelfactory.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stlplugin/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stlplugin/plugins.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/stlplugin/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/stlplugin/worker.ts -------------------------------------------------------------------------------- /python/jupytercad_core/src/workerregistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/src/workerregistry.ts -------------------------------------------------------------------------------- /python/jupytercad_core/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/style/base.css -------------------------------------------------------------------------------- /python/jupytercad_core/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /python/jupytercad_core/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /python/jupytercad_core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_core/tsconfig.json -------------------------------------------------------------------------------- /python/jupytercad_lab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/.gitignore -------------------------------------------------------------------------------- /python/jupytercad_lab/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/.prettierignore -------------------------------------------------------------------------------- /python/jupytercad_lab/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/LICENSE -------------------------------------------------------------------------------- /python/jupytercad_lab/README.md: -------------------------------------------------------------------------------- 1 | # jupytercad_lab 2 | -------------------------------------------------------------------------------- /python/jupytercad_lab/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/install.json -------------------------------------------------------------------------------- /python/jupytercad_lab/jupytercad_lab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/jupytercad_lab/__init__.py -------------------------------------------------------------------------------- /python/jupytercad_lab/jupytercad_lab/notebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/jupytercad_lab/notebook/__init__.py -------------------------------------------------------------------------------- /python/jupytercad_lab/jupytercad_lab/notebook/cad_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/jupytercad_lab/notebook/cad_document.py -------------------------------------------------------------------------------- /python/jupytercad_lab/jupytercad_lab/notebook/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/jupytercad_lab/notebook/utils.py -------------------------------------------------------------------------------- /python/jupytercad_lab/jupytercad_lab/notebook/y_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/jupytercad_lab/notebook/y_connector.py -------------------------------------------------------------------------------- /python/jupytercad_lab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/package.json -------------------------------------------------------------------------------- /python/jupytercad_lab/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad_lab/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/scripts/bump-version.py -------------------------------------------------------------------------------- /python/jupytercad_lab/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/setup.py -------------------------------------------------------------------------------- /python/jupytercad_lab/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/src/index.ts -------------------------------------------------------------------------------- /python/jupytercad_lab/src/notebookrenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/src/notebookrenderer.ts -------------------------------------------------------------------------------- /python/jupytercad_lab/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/style/base.css -------------------------------------------------------------------------------- /python/jupytercad_lab/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /python/jupytercad_lab/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /python/jupytercad_lab/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lab/tsconfig.json -------------------------------------------------------------------------------- /python/jupytercad_lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lite/LICENSE -------------------------------------------------------------------------------- /python/jupytercad_lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lite/README.md -------------------------------------------------------------------------------- /python/jupytercad_lite/jupytercad/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1.7" 2 | 3 | from jupytercad_lab import CadDocument # noqa 4 | -------------------------------------------------------------------------------- /python/jupytercad_lite/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lite/pyproject.toml -------------------------------------------------------------------------------- /python/jupytercad_lite/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lite/scripts/bump-version.py -------------------------------------------------------------------------------- /python/jupytercad_lite/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupytercad_lite/setup.py -------------------------------------------------------------------------------- /python/jupyverse/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/COPYING.md -------------------------------------------------------------------------------- /python/jupyverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/README.md -------------------------------------------------------------------------------- /python/jupyverse/fps_jupytercad/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3.3" 2 | -------------------------------------------------------------------------------- /python/jupyverse/fps_jupytercad/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/fps_jupytercad/main.py -------------------------------------------------------------------------------- /python/jupyverse/fps_jupytercad/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/fps_jupytercad/models.py -------------------------------------------------------------------------------- /python/jupyverse/fps_jupytercad/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/jupyverse/fps_jupytercad/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/fps_jupytercad/routes.py -------------------------------------------------------------------------------- /python/jupyverse/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/pyproject.toml -------------------------------------------------------------------------------- /python/jupyverse/scripts/bump-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/python/jupyverse/scripts/bump-version.py -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/requirements-build.txt -------------------------------------------------------------------------------- /scripts/build_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/scripts/build_packages.py -------------------------------------------------------------------------------- /scripts/dev-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/scripts/dev-install.py -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfigbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/tsconfigbase.json -------------------------------------------------------------------------------- /ui-tests/jupyter_server_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/jupyter_server_test_config.py -------------------------------------------------------------------------------- /ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/package.json -------------------------------------------------------------------------------- /ui-tests/playwright-lite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/playwright-lite.config.js -------------------------------------------------------------------------------- /ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /ui-tests/tests/lite.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/lite.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/lite.spec.ts-snapshots/Render-3M-CONNECTOR-STEP-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/lite.spec.ts-snapshots/Render-3M-CONNECTOR-STEP-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/lite.spec.ts-snapshots/Render-fan-stl-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/lite.spec.ts-snapshots/Render-fan-stl-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/lite.spec.ts-snapshots/Render-notebook-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/lite.spec.ts-snapshots/Render-notebook-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/lite.spec.ts-snapshots/Render-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/lite.spec.ts-snapshots/Render-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-0-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-0-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-1-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-2-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-2-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-3-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/dark-Notebook-ipynb-cell-3-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-0-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-0-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-1-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-2-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-2-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-3-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebook.spec.ts-snapshots/light-Notebook-ipynb-cell-3-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/notebooks/Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/notebooks/Notebook.ipynb -------------------------------------------------------------------------------- /ui-tests/tests/sketcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/sketcher.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/sketcher.spec.ts-snapshots/Sketcher-Circle-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/sketcher.spec.ts-snapshots/Sketcher-Circle-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/sketcher.spec.ts-snapshots/Sketcher-Display-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/sketcher.spec.ts-snapshots/Sketcher-Display-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/tree.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/tree.spec.ts-snapshots/Tree-Display-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/tree.spec.ts-snapshots/Tree-Display-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Exploded-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Exploded-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Accept-Suggestion-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Accept-Suggestion-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Console-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Console-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Delete-Suggestion-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Delete-Suggestion-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Modified-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Modified-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-New-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-New-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Redo-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Redo-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/JCAD-Undo-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/JCAD-Undo-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/MultiSelect-Cut-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/MultiSelect-Cut-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/MultiSelect-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/MultiSelect-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Operator-Add-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Operator-Add-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Operator-Edit-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Operator-Edit-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Operator-Remove-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Operator-Remove-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Render-3M-CONNECTOR-STEP-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Render-3M-CONNECTOR-STEP-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Render-fan-stl-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Render-fan-stl-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/tests/ui.spec.ts-snapshots/Render-test-jcad-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/tests/ui.spec.ts-snapshots/Render-test-jcad-chromium-linux.png -------------------------------------------------------------------------------- /ui-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/ui-tests/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupytercad/JupyterCAD/HEAD/yarn.lock --------------------------------------------------------------------------------