chili3d 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +26 -0
- package/.vscode/c_cpp_properties.json +30 -0
- package/.vscode/launch.json +21 -0
- package/.vscode/settings.json +8 -0
- package/Dockerfile +7 -0
- package/LICENSE +661 -0
- package/README.md +184 -0
- package/biome.json +67 -0
- package/compose.yml +7 -0
- package/cpp/CMakeLists.txt +96 -0
- package/cpp/CMakePresets.json +43 -0
- package/cpp/README.md +21 -0
- package/cpp/src/converter.cpp +413 -0
- package/cpp/src/factory.cpp +612 -0
- package/cpp/src/geometry.cpp +204 -0
- package/cpp/src/mesher.cpp +330 -0
- package/cpp/src/opencascade.cpp +414 -0
- package/cpp/src/shape.cpp +447 -0
- package/cpp/src/shared.cpp +83 -0
- package/cpp/src/shared.hpp +211 -0
- package/cpp/src/transient.cpp +29 -0
- package/cpp/src/utils.cpp +114 -0
- package/cpp/src/utils.hpp +25 -0
- package/cpp/test/index.html +146 -0
- package/package.json +49 -0
- package/packages/chili/package.json +11 -0
- package/packages/chili/src/application.ts +200 -0
- package/packages/chili/src/bodys/arc.ts +61 -0
- package/packages/chili/src/bodys/boolean.ts +32 -0
- package/packages/chili/src/bodys/box.ts +73 -0
- package/packages/chili/src/bodys/circle.ts +57 -0
- package/packages/chili/src/bodys/cone.ts +64 -0
- package/packages/chili/src/bodys/cylinder.ts +69 -0
- package/packages/chili/src/bodys/ellipse.ts +85 -0
- package/packages/chili/src/bodys/face.ts +72 -0
- package/packages/chili/src/bodys/fuse.ts +44 -0
- package/packages/chili/src/bodys/index.ts +16 -0
- package/packages/chili/src/bodys/line.ts +48 -0
- package/packages/chili/src/bodys/polygon.ts +40 -0
- package/packages/chili/src/bodys/prism.ts +49 -0
- package/packages/chili/src/bodys/pyramid.ts +64 -0
- package/packages/chili/src/bodys/rect.ts +69 -0
- package/packages/chili/src/bodys/revolve.ts +54 -0
- package/packages/chili/src/bodys/sphere.ts +48 -0
- package/packages/chili/src/bodys/sweep.ts +67 -0
- package/packages/chili/src/bodys/wire.ts +36 -0
- package/packages/chili/src/commands/application/index.ts +10 -0
- package/packages/chili/src/commands/application/newDocument.ts +17 -0
- package/packages/chili/src/commands/application/openDocument.ts +35 -0
- package/packages/chili/src/commands/application/performanceTest.ts +64 -0
- package/packages/chili/src/commands/application/saveDocument.ts +24 -0
- package/packages/chili/src/commands/application/toFile.ts +35 -0
- package/packages/chili/src/commands/application/toggleDynamicWorkplane.ts +15 -0
- package/packages/chili/src/commands/application/wechatGroup.ts +42 -0
- package/packages/chili/src/commands/boolean.ts +109 -0
- package/packages/chili/src/commands/create/arc.ts +110 -0
- package/packages/chili/src/commands/create/bezier.ts +116 -0
- package/packages/chili/src/commands/create/box.ts +59 -0
- package/packages/chili/src/commands/create/circle.ts +54 -0
- package/packages/chili/src/commands/create/cone.ts +104 -0
- package/packages/chili/src/commands/create/converter.ts +159 -0
- package/packages/chili/src/commands/create/copySubShape.ts +37 -0
- package/packages/chili/src/commands/create/curveProjection.ts +61 -0
- package/packages/chili/src/commands/create/cylinder.ts +96 -0
- package/packages/chili/src/commands/create/ellipse.ts +95 -0
- package/packages/chili/src/commands/create/group.ts +205 -0
- package/packages/chili/src/commands/create/index.ts +26 -0
- package/packages/chili/src/commands/create/line.ts +61 -0
- package/packages/chili/src/commands/create/loft.ts +149 -0
- package/packages/chili/src/commands/create/offset.ts +131 -0
- package/packages/chili/src/commands/create/polygon.ts +104 -0
- package/packages/chili/src/commands/create/prism.ts +52 -0
- package/packages/chili/src/commands/create/pyramid.ts +56 -0
- package/packages/chili/src/commands/create/rect.ts +105 -0
- package/packages/chili/src/commands/create/revolve.ts +62 -0
- package/packages/chili/src/commands/create/section.ts +31 -0
- package/packages/chili/src/commands/create/sphere.ts +48 -0
- package/packages/chili/src/commands/create/sweep.ts +39 -0
- package/packages/chili/src/commands/create/thickSolid.ts +50 -0
- package/packages/chili/src/commands/createActCommand.ts +26 -0
- package/packages/chili/src/commands/createCommand.ts +41 -0
- package/packages/chili/src/commands/delete.ts +38 -0
- package/packages/chili/src/commands/folder.ts +18 -0
- package/packages/chili/src/commands/importExport.ts +97 -0
- package/packages/chili/src/commands/index.ts +17 -0
- package/packages/chili/src/commands/measure/angle.ts +130 -0
- package/packages/chili/src/commands/measure/index.ts +6 -0
- package/packages/chili/src/commands/measure/length.ts +57 -0
- package/packages/chili/src/commands/measure/select.module.css +68 -0
- package/packages/chili/src/commands/measure/select.ts +228 -0
- package/packages/chili/src/commands/modify/array.ts +447 -0
- package/packages/chili/src/commands/modify/break.ts +78 -0
- package/packages/chili/src/commands/modify/brush.ts +100 -0
- package/packages/chili/src/commands/modify/chamfer.ts +70 -0
- package/packages/chili/src/commands/modify/explode.ts +91 -0
- package/packages/chili/src/commands/modify/fillet.ts +69 -0
- package/packages/chili/src/commands/modify/index.ts +16 -0
- package/packages/chili/src/commands/modify/mirror.ts +49 -0
- package/packages/chili/src/commands/modify/move.ts +39 -0
- package/packages/chili/src/commands/modify/removeFeature.ts +56 -0
- package/packages/chili/src/commands/modify/removeSubShapes.ts +44 -0
- package/packages/chili/src/commands/modify/rotate.ts +112 -0
- package/packages/chili/src/commands/modify/split.ts +81 -0
- package/packages/chili/src/commands/modify/transformedCommand.ts +100 -0
- package/packages/chili/src/commands/modify/trim.ts +254 -0
- package/packages/chili/src/commands/multistepCommand.ts +125 -0
- package/packages/chili/src/commands/redo.ts +16 -0
- package/packages/chili/src/commands/undo.ts +16 -0
- package/packages/chili/src/commands/workingPlane.ts +150 -0
- package/packages/chili/src/comparers/NumberEqualityComparer.ts +12 -0
- package/packages/chili/src/comparers/XYZEqualityComparer.ts +12 -0
- package/packages/chili/src/comparers/index.ts +5 -0
- package/packages/chili/src/document.ts +145 -0
- package/packages/chili/src/editEventHandler.ts +20 -0
- package/packages/chili/src/index.ts +12 -0
- package/packages/chili/src/selection.ts +178 -0
- package/packages/chili/src/services/commandService.ts +105 -0
- package/packages/chili/src/services/editorService.ts +46 -0
- package/packages/chili/src/services/hotkeyService.ts +102 -0
- package/packages/chili/src/services/index.ts +6 -0
- package/packages/chili/src/snap/dimension.ts +33 -0
- package/packages/chili/src/snap/handlers/angleSnapEventHandler.ts +60 -0
- package/packages/chili/src/snap/handlers/index.ts +7 -0
- package/packages/chili/src/snap/handlers/lengthSnapEventHandler.ts +117 -0
- package/packages/chili/src/snap/handlers/pointSnapEventHandler.ts +176 -0
- package/packages/chili/src/snap/handlers/snapEventHandler.ts +288 -0
- package/packages/chili/src/snap/index.ts +6 -0
- package/packages/chili/src/snap/snap.ts +50 -0
- package/packages/chili/src/snap/snaps/axisSnap.ts +57 -0
- package/packages/chili/src/snap/snaps/baseSnap.ts +69 -0
- package/packages/chili/src/snap/snaps/featurePointStrategy.ts +64 -0
- package/packages/chili/src/snap/snaps/index.ts +7 -0
- package/packages/chili/src/snap/snaps/objectSnap.ts +264 -0
- package/packages/chili/src/snap/snaps/planeSnap.ts +55 -0
- package/packages/chili/src/snap/snaps/pointOnCurveSnap.ts +24 -0
- package/packages/chili/src/snap/tracking/axis.ts +32 -0
- package/packages/chili/src/snap/tracking/axisTracking.ts +46 -0
- package/packages/chili/src/snap/tracking/index.ts +6 -0
- package/packages/chili/src/snap/tracking/objectTracking.ts +90 -0
- package/packages/chili/src/snap/tracking/trackingBase.ts +40 -0
- package/packages/chili/src/snap/tracking/trackingSnap.ts +201 -0
- package/packages/chili/src/step/angleStep.ts +32 -0
- package/packages/chili/src/step/index.ts +8 -0
- package/packages/chili/src/step/lengthStep.ts +32 -0
- package/packages/chili/src/step/pointStep.ts +87 -0
- package/packages/chili/src/step/selectStep.ts +130 -0
- package/packages/chili/src/step/step.ts +55 -0
- package/packages/chili/src/utils.ts +19 -0
- package/packages/chili/test/command.test.ts +4 -0
- package/packages/chili-builder/package.json +13 -0
- package/packages/chili-builder/src/additionalModule.ts +15 -0
- package/packages/chili-builder/src/appBuilder.ts +176 -0
- package/packages/chili-builder/src/defaultDataExchange.ts +152 -0
- package/packages/chili-builder/src/index.ts +5 -0
- package/packages/chili-builder/src/ribbon.ts +129 -0
- package/packages/chili-controls/package.json +9 -0
- package/packages/chili-controls/src/collection.ts +96 -0
- package/packages/chili-controls/src/controls.ts +83 -0
- package/packages/chili-controls/src/converters/colorConverter.ts +39 -0
- package/packages/chili-controls/src/converters/index.ts +8 -0
- package/packages/chili-controls/src/converters/numberConverter.ts +15 -0
- package/packages/chili-controls/src/converters/stringConverter.ts +13 -0
- package/packages/chili-controls/src/converters/urlConverter.ts +10 -0
- package/packages/chili-controls/src/converters/xyzConverter.ts +28 -0
- package/packages/chili-controls/src/expander/expander.module.css +38 -0
- package/packages/chili-controls/src/expander/expander.ts +59 -0
- package/packages/chili-controls/src/expander/index.ts +4 -0
- package/packages/chili-controls/src/htmlProps.ts +10 -0
- package/packages/chili-controls/src/index.ts +10 -0
- package/packages/chili-controls/src/radioGroup.module.css +20 -0
- package/packages/chili-controls/src/radioGroup.ts +54 -0
- package/packages/chili-controls/src/utils.ts +20 -0
- package/packages/chili-controls/test/converter.test.ts +70 -0
- package/packages/chili-controls/test/styleMock.js +4 -0
- package/packages/chili-core/package.json +7 -0
- package/packages/chili-core/src/application.ts +38 -0
- package/packages/chili-core/src/command/command.ts +154 -0
- package/packages/chili-core/src/command/commandKeys.ts +8 -0
- package/packages/chili-core/src/command/decarator.ts +43 -0
- package/packages/chili-core/src/command/index.ts +6 -0
- package/packages/chili-core/src/config.ts +145 -0
- package/packages/chili-core/src/constants.ts +8 -0
- package/packages/chili-core/src/dataExchange.ts +12 -0
- package/packages/chili-core/src/document.ts +25 -0
- package/packages/chili-core/src/editor.ts +12 -0
- package/packages/chili-core/src/foundation/asyncController.ts +55 -0
- package/packages/chili-core/src/foundation/binding.ts +132 -0
- package/packages/chili-core/src/foundation/collection.ts +208 -0
- package/packages/chili-core/src/foundation/converter.ts +9 -0
- package/packages/chili-core/src/foundation/deepObserver.ts +154 -0
- package/packages/chili-core/src/foundation/disposable.ts +18 -0
- package/packages/chili-core/src/foundation/dto/index.ts +9 -0
- package/packages/chili-core/src/foundation/equalityComparer.ts +6 -0
- package/packages/chili-core/src/foundation/gc.ts +36 -0
- package/packages/chili-core/src/foundation/history.ts +237 -0
- package/packages/chili-core/src/foundation/id.ts +25 -0
- package/packages/chili-core/src/foundation/index.ts +26 -0
- package/packages/chili-core/src/foundation/lazy.ts +18 -0
- package/packages/chili-core/src/foundation/linkedList.ts +141 -0
- package/packages/chili-core/src/foundation/logger.ts +45 -0
- package/packages/chili-core/src/foundation/messageType.ts +8 -0
- package/packages/chili-core/src/foundation/objectStorage.ts +50 -0
- package/packages/chili-core/src/foundation/observer.ts +147 -0
- package/packages/chili-core/src/foundation/precision.ts +8 -0
- package/packages/chili-core/src/foundation/pubsub.ts +74 -0
- package/packages/chili-core/src/foundation/result.ts +69 -0
- package/packages/chili-core/src/foundation/storage.ts +10 -0
- package/packages/chili-core/src/foundation/transaction.ts +77 -0
- package/packages/chili-core/src/foundation/utils/debounce.ts +15 -0
- package/packages/chili-core/src/foundation/utils/download.ts +16 -0
- package/packages/chili-core/src/foundation/utils/index.ts +6 -0
- package/packages/chili-core/src/foundation/utils/readFileAsync.ts +84 -0
- package/packages/chili-core/src/i18n/i18n.ts +107 -0
- package/packages/chili-core/src/i18n/index.ts +5 -0
- package/packages/chili-core/src/i18n/keys.ts +265 -0
- package/packages/chili-core/src/index.ts +26 -0
- package/packages/chili-core/src/material.ts +269 -0
- package/packages/chili-core/src/math/boundingBox.ts +226 -0
- package/packages/chili-core/src/math/index.ts +14 -0
- package/packages/chili-core/src/math/line.ts +55 -0
- package/packages/chili-core/src/math/lineSegment.ts +166 -0
- package/packages/chili-core/src/math/mathUtils.ts +45 -0
- package/packages/chili-core/src/math/matrix4.ts +414 -0
- package/packages/chili-core/src/math/plane.ts +96 -0
- package/packages/chili-core/src/math/planeAngle.ts +53 -0
- package/packages/chili-core/src/math/quaternion.ts +131 -0
- package/packages/chili-core/src/math/ray.ts +30 -0
- package/packages/chili-core/src/math/xy.ts +104 -0
- package/packages/chili-core/src/math/xyz.ts +181 -0
- package/packages/chili-core/src/model/component.ts +305 -0
- package/packages/chili-core/src/model/facebaseNode.ts +17 -0
- package/packages/chili-core/src/model/folderNode.ts +289 -0
- package/packages/chili-core/src/model/geometryNode.ts +185 -0
- package/packages/chili-core/src/model/groupNode.ts +19 -0
- package/packages/chili-core/src/model/index.ts +12 -0
- package/packages/chili-core/src/model/meshNode.ts +53 -0
- package/packages/chili-core/src/model/node.ts +315 -0
- package/packages/chili-core/src/model/shapeNode.ts +195 -0
- package/packages/chili-core/src/model/visualNode.ts +39 -0
- package/packages/chili-core/src/modelManager.ts +147 -0
- package/packages/chili-core/src/navigation.ts +58 -0
- package/packages/chili-core/src/property.ts +60 -0
- package/packages/chili-core/src/selection.ts +33 -0
- package/packages/chili-core/src/selectionFilter.ts +28 -0
- package/packages/chili-core/src/serialize/index.ts +4 -0
- package/packages/chili-core/src/serialize/serializer.ts +231 -0
- package/packages/chili-core/src/service.ts +10 -0
- package/packages/chili-core/src/shape/curve.ts +174 -0
- package/packages/chili-core/src/shape/geometry.ts +17 -0
- package/packages/chili-core/src/shape/index.ts +12 -0
- package/packages/chili-core/src/shape/lineType.ts +7 -0
- package/packages/chili-core/src/shape/meshData.ts +347 -0
- package/packages/chili-core/src/shape/shape.ts +104 -0
- package/packages/chili-core/src/shape/shapeConverter.ts +17 -0
- package/packages/chili-core/src/shape/shapeFactory.ts +58 -0
- package/packages/chili-core/src/shape/shapeType.ts +75 -0
- package/packages/chili-core/src/shape/surface.ts +154 -0
- package/packages/chili-core/src/snapType.ts +32 -0
- package/packages/chili-core/src/ui/button.ts +16 -0
- package/packages/chili-core/src/ui/combobox.ts +27 -0
- package/packages/chili-core/src/ui/dialog.ts +7 -0
- package/packages/chili-core/src/ui/index.ts +8 -0
- package/packages/chili-core/src/ui/ribbon.ts +15 -0
- package/packages/chili-core/src/ui/window.ts +13 -0
- package/packages/chili-core/src/visual/act.ts +59 -0
- package/packages/chili-core/src/visual/cameraController.ts +22 -0
- package/packages/chili-core/src/visual/cursorType.ts +4 -0
- package/packages/chili-core/src/visual/detectedData.ts +14 -0
- package/packages/chili-core/src/visual/eventHandler.ts +15 -0
- package/packages/chili-core/src/visual/highlighter.ts +16 -0
- package/packages/chili-core/src/visual/index.ts +20 -0
- package/packages/chili-core/src/visual/meshExporter.ts +11 -0
- package/packages/chili-core/src/visual/meshUtils.ts +276 -0
- package/packages/chili-core/src/visual/textGenerator.ts +8 -0
- package/packages/chili-core/src/visual/view.ts +80 -0
- package/packages/chili-core/src/visual/viewGizmo.ts +8 -0
- package/packages/chili-core/src/visual/viewport.ts +10 -0
- package/packages/chili-core/src/visual/visual.ts +24 -0
- package/packages/chili-core/src/visual/visualContext.ts +29 -0
- package/packages/chili-core/src/visual/visualFactory.ts +10 -0
- package/packages/chili-core/src/visual/visualObject.ts +25 -0
- package/packages/chili-core/src/visual/visualShape.ts +30 -0
- package/packages/chili-core/test/binding.test.ts +95 -0
- package/packages/chili-core/test/boundingBox.test.ts +60 -0
- package/packages/chili-core/test/collection.test.ts +53 -0
- package/packages/chili-core/test/history.test.ts +42 -0
- package/packages/chili-core/test/line.test.ts +75 -0
- package/packages/chili-core/test/linesegment.test.ts +98 -0
- package/packages/chili-core/test/linkedList.test.ts +82 -0
- package/packages/chili-core/test/math.test.ts +34 -0
- package/packages/chili-core/test/matrix.test.ts +129 -0
- package/packages/chili-core/test/node.test.ts +122 -0
- package/packages/chili-core/test/nodeList.test.ts +247 -0
- package/packages/chili-core/test/observer.test.ts +91 -0
- package/packages/chili-core/test/plane.test.ts +31 -0
- package/packages/chili-core/test/quaternion.test.ts +14 -0
- package/packages/chili-core/test/result.test.ts +24 -0
- package/packages/chili-core/test/serializer.test.ts +58 -0
- package/packages/chili-core/test/snapType.test.ts +10 -0
- package/packages/chili-core/test/task.test.ts +41 -0
- package/packages/chili-core/test/testDocument.ts +70 -0
- package/packages/chili-core/test/transaction.test.ts +42 -0
- package/packages/chili-core/test/visual.test.ts +42 -0
- package/packages/chili-core/test/xyz.test.ts +260 -0
- package/packages/chili-geo/package.json +9 -0
- package/packages/chili-geo/src/index.ts +4 -0
- package/packages/chili-geo/src/utils.ts +113 -0
- package/packages/chili-i18n/package.json +9 -0
- package/packages/chili-i18n/src/en.ts +270 -0
- package/packages/chili-i18n/src/index.ts +8 -0
- package/packages/chili-i18n/src/pt-br.ts +67 -0
- package/packages/chili-i18n/src/zh-cn.ts +269 -0
- package/packages/chili-storage/package.json +9 -0
- package/packages/chili-storage/src/index.ts +4 -0
- package/packages/chili-storage/src/indexedDBStorage.ts +150 -0
- package/packages/chili-three/package.json +13 -0
- package/packages/chili-three/src/cameraController.ts +335 -0
- package/packages/chili-three/src/common.ts +65 -0
- package/packages/chili-three/src/constants.ts +12 -0
- package/packages/chili-three/src/highlightable.ts +13 -0
- package/packages/chili-three/src/index.ts +4 -0
- package/packages/chili-three/src/meshExporter.ts +69 -0
- package/packages/chili-three/src/outlinePass.js +340 -0
- package/packages/chili-three/src/texture_points.jpg +0 -0
- package/packages/chili-three/src/threeGeometry.ts +207 -0
- package/packages/chili-three/src/threeGeometryFactory.ts +120 -0
- package/packages/chili-three/src/threeHelper.ts +174 -0
- package/packages/chili-three/src/threeHighlighter.ts +257 -0
- package/packages/chili-three/src/threeView.module.css +39 -0
- package/packages/chili-three/src/threeView.ts +669 -0
- package/packages/chili-three/src/threeViewEventHandler.ts +193 -0
- package/packages/chili-three/src/threeVisual.ts +92 -0
- package/packages/chili-three/src/threeVisualContext.ts +435 -0
- package/packages/chili-three/src/threeVisualFactory.ts +12 -0
- package/packages/chili-three/src/threeVisualObject.ts +442 -0
- package/packages/chili-three/src/viewGizmo.ts +305 -0
- package/packages/chili-three/test/cameraControls.ts +10 -0
- package/packages/chili-three/test/testDocument.ts +68 -0
- package/packages/chili-three/test/testEdge.ts +171 -0
- package/packages/chili-three/test/testView.ts +78 -0
- package/packages/chili-three/test/three.test.ts +44 -0
- package/packages/chili-three/test/viewGizmo.ts +12 -0
- package/packages/chili-ui/package.json +12 -0
- package/packages/chili-ui/src/cursor/draw.cur +0 -0
- package/packages/chili-ui/src/cursor/index.ts +17 -0
- package/packages/chili-ui/src/dialog.module.css +63 -0
- package/packages/chili-ui/src/dialog.ts +42 -0
- package/packages/chili-ui/src/editor.module.css +83 -0
- package/packages/chili-ui/src/editor.ts +142 -0
- package/packages/chili-ui/src/home/home.module.css +301 -0
- package/packages/chili-ui/src/home/home.ts +243 -0
- package/packages/chili-ui/src/home/index.ts +4 -0
- package/packages/chili-ui/src/home/languageSelector.ts +27 -0
- package/packages/chili-ui/src/home/navigation3DSelector.ts +27 -0
- package/packages/chili-ui/src/home/themeSelector.ts +34 -0
- package/packages/chili-ui/src/index.ts +5 -0
- package/packages/chili-ui/src/mainWindow.module.css +144 -0
- package/packages/chili-ui/src/mainWindow.ts +154 -0
- package/packages/chili-ui/src/okCancel.module.css +54 -0
- package/packages/chili-ui/src/okCancel.ts +58 -0
- package/packages/chili-ui/src/permanent.module.css +44 -0
- package/packages/chili-ui/src/permanent.ts +31 -0
- package/packages/chili-ui/src/project/index.ts +4 -0
- package/packages/chili-ui/src/project/projectView.module.css +37 -0
- package/packages/chili-ui/src/project/projectView.ts +77 -0
- package/packages/chili-ui/src/project/toolBar.module.css +16 -0
- package/packages/chili-ui/src/project/toolBar.ts +73 -0
- package/packages/chili-ui/src/project/tree/index.ts +5 -0
- package/packages/chili-ui/src/project/tree/tree.module.css +16 -0
- package/packages/chili-ui/src/project/tree/tree.ts +265 -0
- package/packages/chili-ui/src/project/tree/treeItem.module.css +21 -0
- package/packages/chili-ui/src/project/tree/treeItem.ts +89 -0
- package/packages/chili-ui/src/project/tree/treeItemGroup.module.css +33 -0
- package/packages/chili-ui/src/project/tree/treeItemGroup.ts +85 -0
- package/packages/chili-ui/src/project/tree/treeModel.module.css +11 -0
- package/packages/chili-ui/src/project/tree/treeModel.ts +20 -0
- package/packages/chili-ui/src/property/check.ts +39 -0
- package/packages/chili-ui/src/property/colorPorperty.module.css +6 -0
- package/packages/chili-ui/src/property/colorProperty.ts +63 -0
- package/packages/chili-ui/src/property/common.module.css +14 -0
- package/packages/chili-ui/src/property/index.ts +4 -0
- package/packages/chili-ui/src/property/input.module.css +19 -0
- package/packages/chili-ui/src/property/input.ts +140 -0
- package/packages/chili-ui/src/property/material/index.ts +5 -0
- package/packages/chili-ui/src/property/material/materialDataContent.ts +44 -0
- package/packages/chili-ui/src/property/material/materialEditor.module.css +98 -0
- package/packages/chili-ui/src/property/material/materialEditor.ts +147 -0
- package/packages/chili-ui/src/property/material/textureEditor.module.css +46 -0
- package/packages/chili-ui/src/property/material/textureEditor.ts +61 -0
- package/packages/chili-ui/src/property/materialProperty.module.css +30 -0
- package/packages/chili-ui/src/property/materialProperty.ts +86 -0
- package/packages/chili-ui/src/property/matrixProperty.ts +147 -0
- package/packages/chili-ui/src/property/propertyBase.module.css +3 -0
- package/packages/chili-ui/src/property/propertyBase.ts +14 -0
- package/packages/chili-ui/src/property/propertyView.module.css +36 -0
- package/packages/chili-ui/src/property/propertyView.ts +115 -0
- package/packages/chili-ui/src/property/utils.ts +48 -0
- package/packages/chili-ui/src/ribbon/commandContext.module.css +73 -0
- package/packages/chili-ui/src/ribbon/commandContext.ts +239 -0
- package/packages/chili-ui/src/ribbon/index.ts +4 -0
- package/packages/chili-ui/src/ribbon/ribbon.module.css +286 -0
- package/packages/chili-ui/src/ribbon/ribbon.ts +288 -0
- package/packages/chili-ui/src/ribbon/ribbonButton.module.css +75 -0
- package/packages/chili-ui/src/ribbon/ribbonButton.ts +88 -0
- package/packages/chili-ui/src/ribbon/ribbonData.ts +66 -0
- package/packages/chili-ui/src/ribbon/ribbonStack.module.css +6 -0
- package/packages/chili-ui/src/ribbon/ribbonStack.ts +13 -0
- package/packages/chili-ui/src/ribbon/ribbonToggleButton.module.css +3 -0
- package/packages/chili-ui/src/ribbon/ribbonToggleButton.ts +6 -0
- package/packages/chili-ui/src/statusbar/index.ts +4 -0
- package/packages/chili-ui/src/statusbar/snapConfig.module.css +25 -0
- package/packages/chili-ui/src/statusbar/snapConfig.ts +92 -0
- package/packages/chili-ui/src/statusbar/statusbar.module.css +28 -0
- package/packages/chili-ui/src/statusbar/statusbar.ts +54 -0
- package/packages/chili-ui/src/toast/index.ts +4 -0
- package/packages/chili-ui/src/toast/toast.module.css +27 -0
- package/packages/chili-ui/src/toast/toast.ts +39 -0
- package/packages/chili-ui/src/viewport/flyout/flyout.module.css +9 -0
- package/packages/chili-ui/src/viewport/flyout/flyout.ts +77 -0
- package/packages/chili-ui/src/viewport/flyout/index.ts +6 -0
- package/packages/chili-ui/src/viewport/flyout/input.module.css +21 -0
- package/packages/chili-ui/src/viewport/flyout/input.ts +89 -0
- package/packages/chili-ui/src/viewport/flyout/tip.module.css +21 -0
- package/packages/chili-ui/src/viewport/flyout/tip.ts +45 -0
- package/packages/chili-ui/src/viewport/index.ts +4 -0
- package/packages/chili-ui/src/viewport/layoutViewport.module.css +21 -0
- package/packages/chili-ui/src/viewport/layoutViewport.ts +76 -0
- package/packages/chili-ui/src/viewport/viewport.module.css +179 -0
- package/packages/chili-ui/src/viewport/viewport.ts +296 -0
- package/packages/chili-vis/package.json +9 -0
- package/packages/chili-vis/src/index.ts +7 -0
- package/packages/chili-vis/src/nodeSelectionEventHandler.ts +122 -0
- package/packages/chili-vis/src/selectionEventHandler.ts +145 -0
- package/packages/chili-vis/src/shapeSelectionEventHandler.ts +176 -0
- package/packages/chili-vis/src/viewUtils.ts +64 -0
- package/packages/chili-wasm/lib/chili-wasm.d.ts +827 -0
- package/packages/chili-wasm/lib/chili-wasm.js +5275 -0
- package/packages/chili-wasm/lib/chili-wasm.wasm +0 -0
- package/packages/chili-wasm/package.json +10 -0
- package/packages/chili-wasm/src/converter.ts +124 -0
- package/packages/chili-wasm/src/curve.ts +589 -0
- package/packages/chili-wasm/src/factory.ts +331 -0
- package/packages/chili-wasm/src/geometry.ts +51 -0
- package/packages/chili-wasm/src/helper.ts +435 -0
- package/packages/chili-wasm/src/index.ts +5 -0
- package/packages/chili-wasm/src/mesher.ts +114 -0
- package/packages/chili-wasm/src/shape.ts +481 -0
- package/packages/chili-wasm/src/surface.ts +510 -0
- package/packages/chili-wasm/src/wasm.ts +13 -0
- package/packages/chili-web/package.json +9 -0
- package/packages/chili-web/src/index.ts +33 -0
- package/packages/chili-web/src/loading.ts +67 -0
- package/packages/global.d.ts +31 -0
- package/public/favicon.svg +10 -0
- package/public/fonts/fzhei.json +46120 -0
- package/public/iconfont.js +1 -0
- package/public/images/wechat.jpg +0 -0
- package/public/index.css +13 -0
- package/public/index.html +24 -0
- package/rspack.config.ts +93 -0
- package/rstest.config.ts +27 -0
- package/screenshots/screenshot.png +0 -0
- package/scripts/add_copyright.mjs +59 -0
- package/scripts/build-npm.mjs +105 -0
- package/scripts/common.mjs +24 -0
- package/scripts/release.mjs +92 -0
- package/scripts/restore-package-json.mjs +27 -0
- package/scripts/setup_wasm_deps.mjs +97 -0
- package/scripts/update-package-json.mjs +27 -0
- package/tsconfig.build.json +14 -0
- package/tsconfig.build.tsbuildinfo +1 -0
- package/tsconfig.json +19 -0
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { FolderNode, type IDocument } from "../src";
|
|
5
|
+
import { TestDocument } from "./testDocument";
|
|
6
|
+
|
|
7
|
+
describe("test NodeLinkedList", () => {
|
|
8
|
+
const doc: IDocument = new TestDocument() as any;
|
|
9
|
+
|
|
10
|
+
test("test add and remove", () => {
|
|
11
|
+
const l1 = new FolderNode(doc, "l1");
|
|
12
|
+
const l2 = new FolderNode(doc, "l2");
|
|
13
|
+
const l3 = new FolderNode(doc, "l3");
|
|
14
|
+
const l4 = new FolderNode(doc, "l4");
|
|
15
|
+
|
|
16
|
+
l1.add(l2);
|
|
17
|
+
expect(l1.firstChild).toEqual(l2);
|
|
18
|
+
expect(l1.lastChild).toEqual(l2);
|
|
19
|
+
expect(l1.size()).toBe(1);
|
|
20
|
+
|
|
21
|
+
l1.remove(l2);
|
|
22
|
+
expect(l1.firstChild).toBeUndefined();
|
|
23
|
+
expect(l1.lastChild).toBeUndefined();
|
|
24
|
+
expect(l1.size()).toBe(0);
|
|
25
|
+
|
|
26
|
+
l1.add(l2);
|
|
27
|
+
l1.add(l3);
|
|
28
|
+
expect(l1.firstChild).toEqual(l2);
|
|
29
|
+
expect(l1.lastChild).toBe(l3);
|
|
30
|
+
expect(l2.nextSibling).toBe(l3);
|
|
31
|
+
expect(l3.previousSibling).toBe(l2);
|
|
32
|
+
expect(l1.size()).toBe(2);
|
|
33
|
+
|
|
34
|
+
l1.remove(l2);
|
|
35
|
+
expect(l1.firstChild).toBe(l3);
|
|
36
|
+
expect(l1.lastChild).toBe(l3);
|
|
37
|
+
expect(l1.size()).toBe(1);
|
|
38
|
+
|
|
39
|
+
l1.add(l2);
|
|
40
|
+
expect(l1.firstChild).toBe(l3);
|
|
41
|
+
expect(l1.lastChild).toBe(l2);
|
|
42
|
+
l1.add(l4);
|
|
43
|
+
expect(l1.size()).toBe(3);
|
|
44
|
+
expect(l1.lastChild).toBe(l4);
|
|
45
|
+
l1.remove(l2);
|
|
46
|
+
expect(l3.nextSibling).toBe(l4);
|
|
47
|
+
expect(l4.previousSibling).toBe(l3);
|
|
48
|
+
expect(l1.size()).toBe(2);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
test("test insert before", () => {
|
|
52
|
+
const l1 = new FolderNode(doc, "l1");
|
|
53
|
+
const l2 = new FolderNode(doc, "l2");
|
|
54
|
+
const l3 = new FolderNode(doc, "l3");
|
|
55
|
+
const l4 = new FolderNode(doc, "l4");
|
|
56
|
+
|
|
57
|
+
l1.insertBefore(undefined, l2);
|
|
58
|
+
expect(l1.firstChild).toBe(l2);
|
|
59
|
+
expect(l1.lastChild).toBe(l2);
|
|
60
|
+
expect(l1.size()).toBe(1);
|
|
61
|
+
|
|
62
|
+
l1.insertBefore(l2, l3);
|
|
63
|
+
expect(l1.firstChild).toBe(l3);
|
|
64
|
+
expect(l3.nextSibling).toBe(l2);
|
|
65
|
+
expect(l2.previousSibling).toBe(l3);
|
|
66
|
+
expect(l1.size()).toBe(2);
|
|
67
|
+
|
|
68
|
+
l1.insertBefore(l3, l4);
|
|
69
|
+
expect(l2.previousSibling).toBe(l3);
|
|
70
|
+
expect(l3.nextSibling).toBe(l2);
|
|
71
|
+
expect(l3.previousSibling).toBe(l4);
|
|
72
|
+
expect(l4.nextSibling).toBe(l3);
|
|
73
|
+
expect(l1.size()).toBe(3);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
test("test insert after", () => {
|
|
77
|
+
const l1 = new FolderNode(doc, "l1");
|
|
78
|
+
const l2 = new FolderNode(doc, "l2");
|
|
79
|
+
const l3 = new FolderNode(doc, "l3");
|
|
80
|
+
const l4 = new FolderNode(doc, "l4");
|
|
81
|
+
const l5 = new FolderNode(doc, "l5");
|
|
82
|
+
|
|
83
|
+
l1.insertAfter(undefined, l2);
|
|
84
|
+
expect(l1.firstChild).toEqual(l2);
|
|
85
|
+
expect(l1.lastChild).toEqual(l2);
|
|
86
|
+
expect(l1.size()).toBe(1);
|
|
87
|
+
|
|
88
|
+
l1.insertAfter(l2, l3);
|
|
89
|
+
expect(l1.firstChild).toEqual(l2);
|
|
90
|
+
expect(l1.lastChild).toEqual(l3);
|
|
91
|
+
expect(l2.nextSibling).toBe(l3);
|
|
92
|
+
expect(l2.previousSibling).toBeUndefined();
|
|
93
|
+
expect(l3.previousSibling).toBe(l2);
|
|
94
|
+
expect(l1.size()).toBe(2);
|
|
95
|
+
|
|
96
|
+
l1.insertAfter(l2, l4);
|
|
97
|
+
expect(l4.previousSibling).toBe(l2);
|
|
98
|
+
expect(l2.nextSibling).toBe(l4);
|
|
99
|
+
expect(l4.nextSibling).toBe(l3);
|
|
100
|
+
expect(l3.previousSibling).toBe(l4);
|
|
101
|
+
expect(l1.size()).toBe(3);
|
|
102
|
+
|
|
103
|
+
l1.insertAfter(undefined, l5);
|
|
104
|
+
expect(l1.firstChild).toBe(l5);
|
|
105
|
+
expect(l5.nextSibling).toBe(l2);
|
|
106
|
+
expect(l2.previousSibling).toBe(l5);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
test("test moveTo", () => {
|
|
110
|
+
const l1 = new FolderNode(doc, "l1");
|
|
111
|
+
const l2 = new FolderNode(doc, "l2");
|
|
112
|
+
const l3 = new FolderNode(doc, "l3");
|
|
113
|
+
const l4 = new FolderNode(doc, "l4");
|
|
114
|
+
const l5 = new FolderNode(doc, "l5");
|
|
115
|
+
const l6 = new FolderNode(doc, "l6");
|
|
116
|
+
|
|
117
|
+
l1.add(l2, l4);
|
|
118
|
+
l2.add(l3);
|
|
119
|
+
l1.move(l2, l5);
|
|
120
|
+
expect(l1.count).toBe(1);
|
|
121
|
+
expect(l5.count).toBe(1);
|
|
122
|
+
expect(l1.firstChild?.name).toBe(l4.name);
|
|
123
|
+
expect(l2.firstChild?.name).toBe(l3.name);
|
|
124
|
+
expect(l5.firstChild?.name).toBe(l2.name);
|
|
125
|
+
|
|
126
|
+
l5.add(l6);
|
|
127
|
+
l1.move(l4, l5, l2);
|
|
128
|
+
expect(l1.count).toBe(0);
|
|
129
|
+
expect(l5.count).toBe(3);
|
|
130
|
+
expect(l2.nextSibling?.name).toBe(l4.name);
|
|
131
|
+
expect(l4.previousSibling?.name).toBe(l2.name);
|
|
132
|
+
expect(l4.nextSibling?.name).toBe(l6.name);
|
|
133
|
+
expect(l6.previousSibling?.name).toBe(l4.name);
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
test("test undo redo", () => {
|
|
137
|
+
const l1 = new FolderNode(doc, "l1");
|
|
138
|
+
|
|
139
|
+
// add undo redo
|
|
140
|
+
doc.modelManager.rootNode.add(l1);
|
|
141
|
+
expect(doc.modelManager.rootNode.firstChild).toBe(l1);
|
|
142
|
+
doc.history.undo();
|
|
143
|
+
expect(doc.modelManager.rootNode.firstChild).toBeUndefined();
|
|
144
|
+
doc.history.redo();
|
|
145
|
+
expect(doc.modelManager.rootNode.firstChild).toBe(l1);
|
|
146
|
+
doc.modelManager.rootNode.remove(l1);
|
|
147
|
+
|
|
148
|
+
// remove undo redo
|
|
149
|
+
doc.modelManager.rootNode.add(l1);
|
|
150
|
+
expect(doc.modelManager.rootNode.firstChild).toBe(l1);
|
|
151
|
+
doc.modelManager.rootNode.remove(l1);
|
|
152
|
+
expect(doc.modelManager.rootNode.firstChild).toBeUndefined();
|
|
153
|
+
doc.history.undo();
|
|
154
|
+
expect(doc.modelManager.rootNode.firstChild).toBe(l1);
|
|
155
|
+
doc.history.redo();
|
|
156
|
+
expect(doc.modelManager.rootNode.firstChild).toBeUndefined();
|
|
157
|
+
doc.modelManager.rootNode.remove(l1);
|
|
158
|
+
|
|
159
|
+
const l2 = new FolderNode(doc, "l2");
|
|
160
|
+
const l3 = new FolderNode(doc, "l3");
|
|
161
|
+
// insertAfter undo redo
|
|
162
|
+
doc.modelManager.rootNode.add(l1, l3);
|
|
163
|
+
doc.modelManager.rootNode.insertAfter(l1, l2);
|
|
164
|
+
expect(l1.nextSibling).toBe(l2);
|
|
165
|
+
expect(l2.previousSibling).toBe(l1);
|
|
166
|
+
expect(l2.nextSibling).toBe(l3);
|
|
167
|
+
expect(l3.previousSibling).toBe(l2);
|
|
168
|
+
doc.history.undo();
|
|
169
|
+
expect(l1.nextSibling).toBe(l3);
|
|
170
|
+
expect(l3.previousSibling).toBe(l1);
|
|
171
|
+
expect(l2.previousSibling).toBeUndefined();
|
|
172
|
+
doc.history.redo();
|
|
173
|
+
expect(l1.nextSibling).toBe(l2);
|
|
174
|
+
expect(l2.previousSibling).toBe(l1);
|
|
175
|
+
expect(l2.nextSibling).toBe(l3);
|
|
176
|
+
expect(l3.previousSibling).toBe(l2);
|
|
177
|
+
doc.modelManager.rootNode.remove(l1, l2, l3);
|
|
178
|
+
|
|
179
|
+
// insertBefore undo redo
|
|
180
|
+
doc.modelManager.rootNode.add(l3, l1);
|
|
181
|
+
doc.modelManager.rootNode.insertBefore(l1, l2);
|
|
182
|
+
expect(l3.nextSibling).toBe(l2);
|
|
183
|
+
expect(l2.previousSibling).toBe(l3);
|
|
184
|
+
expect(l2.nextSibling).toBe(l1);
|
|
185
|
+
expect(l1.previousSibling).toBe(l2);
|
|
186
|
+
doc.history.undo();
|
|
187
|
+
expect(l3.nextSibling).toBe(l1);
|
|
188
|
+
expect(l2.nextSibling).toBeUndefined();
|
|
189
|
+
expect(l1.previousSibling).toBe(l3);
|
|
190
|
+
doc.history.redo();
|
|
191
|
+
expect(l3.nextSibling).toBe(l2);
|
|
192
|
+
expect(l2.previousSibling).toBe(l3);
|
|
193
|
+
expect(l2.nextSibling).toBe(l1);
|
|
194
|
+
expect(l1.previousSibling).toBe(l2);
|
|
195
|
+
doc.modelManager.rootNode.remove(l1, l2, l3);
|
|
196
|
+
|
|
197
|
+
// move undo redo
|
|
198
|
+
doc.modelManager.rootNode.add(l1, l2);
|
|
199
|
+
doc.modelManager.rootNode.move(l1, doc.modelManager.rootNode, l2);
|
|
200
|
+
expect(l2.nextSibling).toBe(l1);
|
|
201
|
+
expect(l1.previousSibling).toBe(l2);
|
|
202
|
+
doc.history.undo();
|
|
203
|
+
expect(l1.nextSibling).toBe(l2);
|
|
204
|
+
expect(l2.previousSibling).toBe(l1);
|
|
205
|
+
doc.history.redo();
|
|
206
|
+
expect(l2.nextSibling).toBe(l1);
|
|
207
|
+
expect(l1.previousSibling).toBe(l2);
|
|
208
|
+
doc.modelManager.rootNode.remove(l1, l2);
|
|
209
|
+
|
|
210
|
+
const l4 = new FolderNode(doc, "l4");
|
|
211
|
+
const l5 = new FolderNode(doc, "l5");
|
|
212
|
+
const l6 = new FolderNode(doc, "l6");
|
|
213
|
+
doc.modelManager.rootNode.add(l1, l2);
|
|
214
|
+
l1.add(l3, l4);
|
|
215
|
+
l2.add(l5);
|
|
216
|
+
l5.add(l6);
|
|
217
|
+
l2.move(l5, l1, l3);
|
|
218
|
+
expect(l2.count).toBe(0);
|
|
219
|
+
expect(l1.count).toBe(3);
|
|
220
|
+
expect(l2.firstChild).toBeUndefined();
|
|
221
|
+
expect(l5.previousSibling).toBe(l3);
|
|
222
|
+
expect(l5.nextSibling).toBe(l4);
|
|
223
|
+
expect(l3.nextSibling).toBe(l5);
|
|
224
|
+
expect(l4.previousSibling?.name).toBe(l5.name);
|
|
225
|
+
expect(l5.firstChild).toBe(l6);
|
|
226
|
+
|
|
227
|
+
doc.history.undo();
|
|
228
|
+
expect(l2.count).toBe(1);
|
|
229
|
+
expect(l1.count).toBe(2);
|
|
230
|
+
expect(l2.firstChild).toBe(l5);
|
|
231
|
+
expect(l5.previousSibling).toBe(undefined);
|
|
232
|
+
expect(l5.nextSibling).toBe(undefined);
|
|
233
|
+
expect(l3.nextSibling).toBe(l4);
|
|
234
|
+
expect(l4.previousSibling).toBe(l3);
|
|
235
|
+
expect(l5.firstChild).toBe(l6);
|
|
236
|
+
|
|
237
|
+
doc.history.redo();
|
|
238
|
+
expect(l2.count).toBe(0);
|
|
239
|
+
expect(l1.count).toBe(3);
|
|
240
|
+
expect(l2.firstChild).toBeUndefined();
|
|
241
|
+
expect(l5.previousSibling).toBe(l3);
|
|
242
|
+
expect(l5.nextSibling).toBe(l4);
|
|
243
|
+
expect(l3.nextSibling).toBe(l5);
|
|
244
|
+
expect(l4.previousSibling).toBe(l5);
|
|
245
|
+
expect(l5.firstChild).toBe(l6);
|
|
246
|
+
});
|
|
247
|
+
});
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { DeepObserver, type IPropertyChanged, Observable } from "../src";
|
|
5
|
+
|
|
6
|
+
class TestClassA extends Observable {
|
|
7
|
+
get propA() {
|
|
8
|
+
return this.getPrivateValue("propA", 1);
|
|
9
|
+
}
|
|
10
|
+
set propA(value: number) {
|
|
11
|
+
this.setProperty("propA", value);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
class TestClassB extends Observable {
|
|
16
|
+
get propBV() {
|
|
17
|
+
return this.getPrivateValue("propBV", 1);
|
|
18
|
+
}
|
|
19
|
+
set propBV(value: number) {
|
|
20
|
+
this.setProperty("propBV", value);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
get propB() {
|
|
24
|
+
return this.getPrivateValue("propB", new TestClassA());
|
|
25
|
+
}
|
|
26
|
+
set propB(value: TestClassA | undefined) {
|
|
27
|
+
this.setProperty("propB", value);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
class TestClassC extends Observable {
|
|
32
|
+
get propCV() {
|
|
33
|
+
return this.getPrivateValue("propCV", 1);
|
|
34
|
+
}
|
|
35
|
+
set propCV(value: number) {
|
|
36
|
+
this.setProperty("propCV", value);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
get propC() {
|
|
40
|
+
return this.getPrivateValue("propC", new TestClassB());
|
|
41
|
+
}
|
|
42
|
+
set propC(value: TestClassB | undefined) {
|
|
43
|
+
this.setProperty("propC", value);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
test("test observer", () => {
|
|
48
|
+
const t = new TestClassA();
|
|
49
|
+
t.onPropertyChanged((p, s, o) => {
|
|
50
|
+
expect(p).toBe("propA");
|
|
51
|
+
expect(s[p]).toBe(2);
|
|
52
|
+
});
|
|
53
|
+
t.propA = 2;
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
test("deep observer", () => {
|
|
57
|
+
const c = new TestClassC();
|
|
58
|
+
let targetProperty: string | undefined;
|
|
59
|
+
const onPropertyChanged = (p: string, s: IPropertyChanged, o: any) => {
|
|
60
|
+
targetProperty = p;
|
|
61
|
+
};
|
|
62
|
+
const a = new TestClassA();
|
|
63
|
+
DeepObserver.addDeepPropertyChangedHandler(c, onPropertyChanged);
|
|
64
|
+
c.propC!.propB = a;
|
|
65
|
+
expect(targetProperty).toBe("propC.propB");
|
|
66
|
+
a.propA = 2;
|
|
67
|
+
expect(targetProperty).toBe("propC.propB.propA");
|
|
68
|
+
|
|
69
|
+
c.propC = undefined;
|
|
70
|
+
expect(targetProperty).toBe("propC");
|
|
71
|
+
a.propA = 3;
|
|
72
|
+
expect(targetProperty).toBe("propC");
|
|
73
|
+
|
|
74
|
+
const b = new TestClassB();
|
|
75
|
+
c.propC = b;
|
|
76
|
+
expect(targetProperty).toBe("propC");
|
|
77
|
+
b.propB = a;
|
|
78
|
+
expect(targetProperty).toBe("propC.propB");
|
|
79
|
+
a.propA = 2;
|
|
80
|
+
expect(targetProperty).toBe("propC.propB.propA");
|
|
81
|
+
|
|
82
|
+
b.propB = undefined;
|
|
83
|
+
expect(targetProperty).toBe("propC.propB");
|
|
84
|
+
a.propA = 3;
|
|
85
|
+
expect(targetProperty).toBe("propC.propB");
|
|
86
|
+
|
|
87
|
+
b.propB = a;
|
|
88
|
+
expect(targetProperty).toBe("propC.propB");
|
|
89
|
+
a.propA = 2;
|
|
90
|
+
expect(targetProperty).toBe("propC.propB.propA");
|
|
91
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { Line, Plane, Ray, XYZ } from "../src";
|
|
5
|
+
|
|
6
|
+
describe("test plane", () => {
|
|
7
|
+
test("test constructor", () => {
|
|
8
|
+
expect(() => new Plane(XYZ.zero, XYZ.unitX, XYZ.unitX)).toThrow();
|
|
9
|
+
expect(() => new Plane(XYZ.zero, XYZ.zero, XYZ.unitY)).toThrow();
|
|
10
|
+
expect(() => new Plane(XYZ.zero, XYZ.unitX, XYZ.zero)).toThrow();
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
test("test intersect", () => {
|
|
14
|
+
const plane = new Plane(XYZ.zero, XYZ.unitZ, XYZ.unitX);
|
|
15
|
+
expect(plane.intersectLine(new Line(XYZ.unitZ, XYZ.unitX))).toBeUndefined();
|
|
16
|
+
expect(plane.intersectLine(new Line(XYZ.unitZ, XYZ.unitZ.reverse()))).toStrictEqual(XYZ.zero);
|
|
17
|
+
expect(plane.intersectLine(new Line(XYZ.unitX, XYZ.unitZ.add(XYZ.unitX)))).toStrictEqual(XYZ.unitX);
|
|
18
|
+
expect(plane.intersectLine(new Line(new XYZ(1, 1, 1), new XYZ(-1, 0, -1)))).toStrictEqual(
|
|
19
|
+
new XYZ(0, 1, 0),
|
|
20
|
+
);
|
|
21
|
+
expect(plane.intersectLine(new Line(new XYZ(1, 1, 1), new XYZ(1, 0, 1)))).toStrictEqual(
|
|
22
|
+
new XYZ(0, 1, 0),
|
|
23
|
+
);
|
|
24
|
+
expect(plane.intersectRay(new Ray(new XYZ(1, 1, 1), new XYZ(1, 0, 1)))).toBeUndefined();
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
test("test project", () => {
|
|
28
|
+
expect(Plane.XY.project(new XYZ(0, 0, 0))).toStrictEqual(new XYZ(0, 0, 0));
|
|
29
|
+
expect(Plane.XY.project(new XYZ(100, 100, 100))).toStrictEqual(new XYZ(100, 100, 0));
|
|
30
|
+
});
|
|
31
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { Quaternion, XYZ } from "../src";
|
|
5
|
+
|
|
6
|
+
describe("test Quaternion", () => {
|
|
7
|
+
test("test rotateVector", () => {
|
|
8
|
+
const quat = new Quaternion(0.822363, 0.0222599, 0.43968, 0.360423);
|
|
9
|
+
const vector = new XYZ(0, 1, 0);
|
|
10
|
+
const gtRotVector = new XYZ(-0.573223, 0.739199, 0.353553);
|
|
11
|
+
const afterRotVec = quat.rotateVector(vector);
|
|
12
|
+
expect(afterRotVec.isEqualTo(gtRotVector)).toBeTruthy();
|
|
13
|
+
});
|
|
14
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { Result } from "../src";
|
|
5
|
+
|
|
6
|
+
test("test result", () => {
|
|
7
|
+
const r1 = Result.ok("11");
|
|
8
|
+
expect(r1.isOk).toBeTruthy;
|
|
9
|
+
expect(r1.value).toBe("11");
|
|
10
|
+
expect(r1.isOk).toBeTruthy();
|
|
11
|
+
|
|
12
|
+
const r2 = Result.err("err");
|
|
13
|
+
expect(r2.isOk).toBeFalsy();
|
|
14
|
+
expect(!r2.isOk).toBeTruthy();
|
|
15
|
+
expect((r2 as Result<any>).error).toBe("err");
|
|
16
|
+
|
|
17
|
+
const r3 = Result.ok(true);
|
|
18
|
+
expect(r3.isOk).toBeTruthy();
|
|
19
|
+
expect((r3 as Result<boolean>).value).toBeTruthy();
|
|
20
|
+
|
|
21
|
+
const r4 = Result.ok(undefined);
|
|
22
|
+
expect(r4.isOk).toBeTruthy();
|
|
23
|
+
expect((r4 as Result<undefined>).value).toBeUndefined();
|
|
24
|
+
});
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { FolderNode, type IDocument, NodeSerializer, type Serialized, Serializer } from "../src";
|
|
5
|
+
import { TestDocument } from "./testDocument";
|
|
6
|
+
|
|
7
|
+
@Serializer.register(["k1" as any])
|
|
8
|
+
class TestObject {
|
|
9
|
+
protected k2: string = "k2";
|
|
10
|
+
public k3: string = "k3";
|
|
11
|
+
|
|
12
|
+
@Serializer.serialze()
|
|
13
|
+
private k1: string;
|
|
14
|
+
@Serializer.serialze()
|
|
15
|
+
private k4: string = "k4";
|
|
16
|
+
@Serializer.serialze()
|
|
17
|
+
protected k5: string = "k5";
|
|
18
|
+
@Serializer.serialze()
|
|
19
|
+
public k6: string = "k6";
|
|
20
|
+
|
|
21
|
+
constructor(k1: string) {
|
|
22
|
+
this.k1 = k1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
serialize(): Serialized {
|
|
26
|
+
return Serializer.serializeObject(this);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
test("test Serializer", () => {
|
|
31
|
+
const obj = new TestObject("111");
|
|
32
|
+
const s = obj.serialize();
|
|
33
|
+
expect("k1" in s.properties).toBeTruthy();
|
|
34
|
+
expect("k4" in s.properties).toBeTruthy();
|
|
35
|
+
expect("k5" in s.properties).toBeTruthy();
|
|
36
|
+
expect("k6" in s.properties).toBeTruthy();
|
|
37
|
+
s.properties["k1"] = "222";
|
|
38
|
+
const obj2 = Serializer.deserializeObject({} as any, s);
|
|
39
|
+
expect(obj2.k1).toBe("222");
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
test("test Node Serializer", () => {
|
|
43
|
+
const doc: IDocument = new TestDocument() as any;
|
|
44
|
+
|
|
45
|
+
const n1 = new FolderNode(doc, "n1");
|
|
46
|
+
const n2 = new FolderNode(doc, "n2");
|
|
47
|
+
const n3 = new FolderNode(doc, "n3");
|
|
48
|
+
const n4 = new FolderNode(doc, "n4");
|
|
49
|
+
n1.add(n2, n3);
|
|
50
|
+
n2.add(n4);
|
|
51
|
+
const s = NodeSerializer.serialize(n1);
|
|
52
|
+
|
|
53
|
+
NodeSerializer.deserialize(doc, s).then((n11: any) => {
|
|
54
|
+
expect(n11.firstChild.name).toBe("n2");
|
|
55
|
+
expect(n11.firstChild.nextSibling.name).toBe("n3");
|
|
56
|
+
expect(n11.firstChild.firstChild.name).toBe("n4");
|
|
57
|
+
});
|
|
58
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { ObjectSnapType } from "../src";
|
|
5
|
+
|
|
6
|
+
test("test SnapType", () => {
|
|
7
|
+
const ts = ObjectSnapType.endPoint | ObjectSnapType.midPoint;
|
|
8
|
+
expect(ObjectSnapType.has(ts, ObjectSnapType.center)).toBeFalsy();
|
|
9
|
+
expect(ObjectSnapType.has(ts, ObjectSnapType.midPoint)).toBeTruthy();
|
|
10
|
+
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { AsyncController } from "../src";
|
|
5
|
+
|
|
6
|
+
test("test cancel", async () => {
|
|
7
|
+
const controller = new AsyncController();
|
|
8
|
+
expect(controller.result?.status === "cancel").toBeFalsy();
|
|
9
|
+
await new Promise((r, s) => {
|
|
10
|
+
setTimeout(() => {
|
|
11
|
+
controller.cancel();
|
|
12
|
+
r("resolved");
|
|
13
|
+
}, 30);
|
|
14
|
+
});
|
|
15
|
+
expect(controller.result?.status === "cancel").toBeTruthy();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
test("test fail", async () => {
|
|
19
|
+
const controller = new AsyncController();
|
|
20
|
+
expect(controller.result?.status === "fail").toBeFalsy();
|
|
21
|
+
await new Promise((r, s) => {
|
|
22
|
+
setTimeout(() => {
|
|
23
|
+
controller.fail("fail msg");
|
|
24
|
+
r("resolved");
|
|
25
|
+
}, 30);
|
|
26
|
+
});
|
|
27
|
+
expect(controller.result?.status === "fail").toBeTruthy();
|
|
28
|
+
expect(controller.result?.message).toBe("fail msg");
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
test("test complete", async () => {
|
|
32
|
+
const controller = new AsyncController();
|
|
33
|
+
expect(controller.result?.status === "success").toBeFalsy();
|
|
34
|
+
await new Promise((r, s) => {
|
|
35
|
+
setTimeout(() => {
|
|
36
|
+
controller.success();
|
|
37
|
+
r("resolved");
|
|
38
|
+
}, 30);
|
|
39
|
+
});
|
|
40
|
+
expect(controller.result?.status === "success").toBeTruthy();
|
|
41
|
+
});
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
type Act,
|
|
6
|
+
History,
|
|
7
|
+
type IApplication,
|
|
8
|
+
type IDocument,
|
|
9
|
+
type ISelection,
|
|
10
|
+
type ISerialize,
|
|
11
|
+
type IView,
|
|
12
|
+
type IVisual,
|
|
13
|
+
type Material,
|
|
14
|
+
ModelManager,
|
|
15
|
+
ObservableCollection,
|
|
16
|
+
type PropertyChangedHandler,
|
|
17
|
+
type Serialized,
|
|
18
|
+
} from "chili-core";
|
|
19
|
+
|
|
20
|
+
export class TestDocument implements IDocument, ISerialize {
|
|
21
|
+
application: IApplication;
|
|
22
|
+
name: string;
|
|
23
|
+
id: string;
|
|
24
|
+
history: History;
|
|
25
|
+
selection: ISelection;
|
|
26
|
+
visual: IVisual;
|
|
27
|
+
activeView: IView | undefined;
|
|
28
|
+
modelManager: ModelManager = new ModelManager(this);
|
|
29
|
+
materials: ObservableCollection<Material> = new ObservableCollection<Material>();
|
|
30
|
+
acts: ObservableCollection<Act> = new ObservableCollection<Act>();
|
|
31
|
+
onPropertyChanged<K extends keyof this>(handler: PropertyChangedHandler<this, K>): void {
|
|
32
|
+
throw new Error("Method not implemented.");
|
|
33
|
+
}
|
|
34
|
+
removePropertyChanged<K extends keyof this>(handler: PropertyChangedHandler<this, K>): void {
|
|
35
|
+
throw new Error("Method not implemented.");
|
|
36
|
+
}
|
|
37
|
+
dispose() {
|
|
38
|
+
throw new Error("Method not implemented.");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
importFiles(files: File[] | FileList): Promise<void> {
|
|
42
|
+
return Promise.resolve();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
close(): Promise<void> {
|
|
46
|
+
return Promise.resolve();
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
serialize(): Serialized {
|
|
50
|
+
return {
|
|
51
|
+
classKey: "TestDocument",
|
|
52
|
+
properties: {},
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
constructor() {
|
|
57
|
+
this.name = "test";
|
|
58
|
+
this.id = "test";
|
|
59
|
+
this.visual = {} as any;
|
|
60
|
+
this.history = new History();
|
|
61
|
+
this.selection = {} as any;
|
|
62
|
+
this.application = { views: [] } as any;
|
|
63
|
+
}
|
|
64
|
+
clearPropertyChanged(): void {
|
|
65
|
+
throw new Error("Method not implemented.");
|
|
66
|
+
}
|
|
67
|
+
save(): Promise<void> {
|
|
68
|
+
return Promise.resolve();
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { History, type IDocument, type PropertyHistoryRecord, Transaction } from "../src";
|
|
5
|
+
|
|
6
|
+
describe("test Transaction", () => {
|
|
7
|
+
test("test static methods", () => {
|
|
8
|
+
const doc: IDocument = { history: new History() } as any;
|
|
9
|
+
const history: PropertyHistoryRecord = {} as any;
|
|
10
|
+
Transaction.add(doc, history);
|
|
11
|
+
expect(doc.history.undoCount()).toBe(1);
|
|
12
|
+
Transaction.execute(doc, "Test", () => {
|
|
13
|
+
Transaction.add(doc, history);
|
|
14
|
+
Transaction.add(doc, history);
|
|
15
|
+
});
|
|
16
|
+
expect(doc.history.undoCount()).toBe(2);
|
|
17
|
+
|
|
18
|
+
expect(() =>
|
|
19
|
+
Transaction.execute(doc, "throw", () => {
|
|
20
|
+
throw new Error("err");
|
|
21
|
+
}),
|
|
22
|
+
).toThrow("err");
|
|
23
|
+
expect(doc.history.undoCount()).toBe(2);
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
test("test methods", () => {
|
|
27
|
+
const doc: IDocument = { history: new History() } as any;
|
|
28
|
+
const trans = new Transaction(doc, "test");
|
|
29
|
+
expect(() => trans.commit()).toThrow("Transaction has not started");
|
|
30
|
+
trans.start();
|
|
31
|
+
expect(() => trans.start()).toThrow("The document has started a transaction");
|
|
32
|
+
trans.rollback();
|
|
33
|
+
expect(() => trans.commit()).toThrow("Transaction has not started");
|
|
34
|
+
|
|
35
|
+
trans.start();
|
|
36
|
+
expect(doc.history.undoCount()).toBe(0);
|
|
37
|
+
const history: PropertyHistoryRecord = {} as any;
|
|
38
|
+
Transaction.add(doc, history);
|
|
39
|
+
trans.commit();
|
|
40
|
+
expect(doc.history.undoCount()).toBe(1);
|
|
41
|
+
});
|
|
42
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
2
|
+
// See LICENSE file in the project root for full license information.
|
|
3
|
+
|
|
4
|
+
import { VisualState } from "../src";
|
|
5
|
+
|
|
6
|
+
describe("visual test", () => {
|
|
7
|
+
test("test VisualState", () => {
|
|
8
|
+
let state = VisualState.normal;
|
|
9
|
+
expect(state).toBe(0);
|
|
10
|
+
|
|
11
|
+
state = VisualState.addState(state, VisualState.edgeHighlight);
|
|
12
|
+
expect(state).toBe(1);
|
|
13
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeTruthy();
|
|
14
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeFalsy();
|
|
15
|
+
|
|
16
|
+
state = VisualState.addState(state, VisualState.edgeSelected);
|
|
17
|
+
expect(state).toBe(3);
|
|
18
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeTruthy();
|
|
19
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeTruthy();
|
|
20
|
+
|
|
21
|
+
state = VisualState.removeState(state, VisualState.edgeHighlight);
|
|
22
|
+
expect(state).toBe(2);
|
|
23
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeFalsy();
|
|
24
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeTruthy();
|
|
25
|
+
|
|
26
|
+
state = VisualState.removeState(state, VisualState.edgeSelected);
|
|
27
|
+
expect(state).toBe(0);
|
|
28
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeFalsy();
|
|
29
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeFalsy();
|
|
30
|
+
|
|
31
|
+
state = VisualState.edgeHighlight;
|
|
32
|
+
state = VisualState.addState(state, VisualState.edgeSelected);
|
|
33
|
+
expect(state).toBe(3);
|
|
34
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeTruthy();
|
|
35
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeTruthy();
|
|
36
|
+
|
|
37
|
+
state = VisualState.removeState(state, VisualState.edgeHighlight);
|
|
38
|
+
expect(state).toBe(2);
|
|
39
|
+
expect(VisualState.hasState(state, VisualState.edgeHighlight)).toBeFalsy();
|
|
40
|
+
expect(VisualState.hasState(state, VisualState.edgeSelected)).toBeTruthy();
|
|
41
|
+
});
|
|
42
|
+
});
|