├── .github └── workflows │ └── static.yml ├── .gitignore ├── README.md ├── compare ├── dxfComparePanel.css └── dxfComparePanel.js ├── dxf_0.html ├── dxf_1.html ├── dxf_2.html ├── dxf_compare_1_viewport.html ├── dxf_compare_2_viewports.html ├── favicon.ico ├── global.css ├── iconfont ├── iconfont.css ├── iconfont.ttf ├── iconfont2.css └── iconfont2.ttf ├── images ├── default-thumbnail.jpg ├── dxf_0.png ├── dxf_1.png ├── dxf_2.png ├── dxf_compare_1.png ├── dxf_compare_2.png ├── pdf_1.png ├── snapshots │ ├── dxf_compare.png │ ├── dxf_compare_2_viewports.gif │ ├── layouts.gif │ ├── load_and_view.gif │ ├── markups.gif │ └── measure_dist.gif └── upload_dxf.png ├── index.html ├── libs ├── fonts │ ├── Microsoft_YaHei.ttf │ ├── Microsoft_YaHei_Regular.typeface.json │ ├── arial.ttf │ ├── helvetiker_regular.typeface.json │ ├── hztxt.shx │ └── simplex.shx ├── pdf │ ├── pdf.min.js │ └── pdf.worker.min.js └── x-viewer │ ├── core │ └── dist │ │ └── index.esm.js │ ├── plugins │ └── dist │ │ └── index.esm.js │ └── ui │ └── dist │ └── index.esm.js ├── models ├── dxf │ ├── doors_and_windows.dxf │ ├── doors_and_windows_mopdified.dxf │ ├── dxf_0.dxf │ ├── dxf_0_1.dxf │ ├── dxf_1.dxf │ ├── dxf_2.dxf │ ├── dxf_3.dxf │ ├── dxf_4.dxf │ └── dxf_5.dxf └── pdf │ └── Inventor-203-054.pdf ├── package.json ├── pdf_1.html ├── settings ├── SettingsPanel.css └── Viewer2dSettingsPanel.js └── upload_dxf.html /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/README.md -------------------------------------------------------------------------------- /compare/dxfComparePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/compare/dxfComparePanel.css -------------------------------------------------------------------------------- /compare/dxfComparePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/compare/dxfComparePanel.js -------------------------------------------------------------------------------- /dxf_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/dxf_0.html -------------------------------------------------------------------------------- /dxf_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/dxf_1.html -------------------------------------------------------------------------------- /dxf_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/dxf_2.html -------------------------------------------------------------------------------- /dxf_compare_1_viewport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/dxf_compare_1_viewport.html -------------------------------------------------------------------------------- /dxf_compare_2_viewports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/dxf_compare_2_viewports.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/favicon.ico -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/global.css -------------------------------------------------------------------------------- /iconfont/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/iconfont/iconfont.css -------------------------------------------------------------------------------- /iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /iconfont/iconfont2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/iconfont/iconfont2.css -------------------------------------------------------------------------------- /iconfont/iconfont2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/iconfont/iconfont2.ttf -------------------------------------------------------------------------------- /images/default-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/default-thumbnail.jpg -------------------------------------------------------------------------------- /images/dxf_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/dxf_0.png -------------------------------------------------------------------------------- /images/dxf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/dxf_1.png -------------------------------------------------------------------------------- /images/dxf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/dxf_2.png -------------------------------------------------------------------------------- /images/dxf_compare_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/dxf_compare_1.png -------------------------------------------------------------------------------- /images/dxf_compare_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/dxf_compare_2.png -------------------------------------------------------------------------------- /images/pdf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/pdf_1.png -------------------------------------------------------------------------------- /images/snapshots/dxf_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/dxf_compare.png -------------------------------------------------------------------------------- /images/snapshots/dxf_compare_2_viewports.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/dxf_compare_2_viewports.gif -------------------------------------------------------------------------------- /images/snapshots/layouts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/layouts.gif -------------------------------------------------------------------------------- /images/snapshots/load_and_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/load_and_view.gif -------------------------------------------------------------------------------- /images/snapshots/markups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/markups.gif -------------------------------------------------------------------------------- /images/snapshots/measure_dist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/snapshots/measure_dist.gif -------------------------------------------------------------------------------- /images/upload_dxf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/images/upload_dxf.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/index.html -------------------------------------------------------------------------------- /libs/fonts/Microsoft_YaHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/Microsoft_YaHei.ttf -------------------------------------------------------------------------------- /libs/fonts/Microsoft_YaHei_Regular.typeface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/Microsoft_YaHei_Regular.typeface.json -------------------------------------------------------------------------------- /libs/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/arial.ttf -------------------------------------------------------------------------------- /libs/fonts/helvetiker_regular.typeface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/helvetiker_regular.typeface.json -------------------------------------------------------------------------------- /libs/fonts/hztxt.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/hztxt.shx -------------------------------------------------------------------------------- /libs/fonts/simplex.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/fonts/simplex.shx -------------------------------------------------------------------------------- /libs/pdf/pdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/pdf/pdf.min.js -------------------------------------------------------------------------------- /libs/pdf/pdf.worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/pdf/pdf.worker.min.js -------------------------------------------------------------------------------- /libs/x-viewer/core/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/x-viewer/core/dist/index.esm.js -------------------------------------------------------------------------------- /libs/x-viewer/plugins/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/x-viewer/plugins/dist/index.esm.js -------------------------------------------------------------------------------- /libs/x-viewer/ui/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/libs/x-viewer/ui/dist/index.esm.js -------------------------------------------------------------------------------- /models/dxf/doors_and_windows.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/doors_and_windows.dxf -------------------------------------------------------------------------------- /models/dxf/doors_and_windows_mopdified.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/doors_and_windows_mopdified.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_0.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_0.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_0_1.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_0_1.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_1.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_1.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_2.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_2.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_3.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_3.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_4.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_4.dxf -------------------------------------------------------------------------------- /models/dxf/dxf_5.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/dxf/dxf_5.dxf -------------------------------------------------------------------------------- /models/pdf/Inventor-203-054.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/models/pdf/Inventor-203-054.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/package.json -------------------------------------------------------------------------------- /pdf_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/pdf_1.html -------------------------------------------------------------------------------- /settings/SettingsPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/settings/SettingsPanel.css -------------------------------------------------------------------------------- /settings/Viewer2dSettingsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/settings/Viewer2dSettingsPanel.js -------------------------------------------------------------------------------- /upload_dxf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thingraph/dxf-viewer-examples/HEAD/upload_dxf.html --------------------------------------------------------------------------------