fcs-core-viewer 0.50.0 → 0.53.0
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/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +3 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/Index.d.ts +75 -6
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcRadiusTwoVertices.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByPoints.d.ts → OpCurveByPoints.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByXYZ.d.ts → OpCurveByXYZ.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleCenterVector.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpExtractAndBuild.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpFaceByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCOG.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCenter.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByInterpolation.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByParameters.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByXYZ.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointOnVertex.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesBox.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCone.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCylinder.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesDisc.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesRectangle.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesSphere.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesTorus.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByBoundary.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByExtrusion.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByLoft.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidBySweep.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/Index.d.ts +57 -4
- package/fcs-core-editor@types/Editor3D/Operations/CAD/InspectionTools/OpMeasureDistance.d.ts +2 -1
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/Index.d.ts +9 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByFace.d.ts +19 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByLine.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByPoint.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpTranslate.d.ts +3 -6
- package/fcs-core-editor@types/Editor3D/Operations/Common/Exchange/Simulation.d.ts +3 -0
- package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +57 -4
- package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +38 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/CSystem/UICSystemByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/Vector/UIVectorByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveArcRadiusTwoVertices.d.ts +35 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineArcThreeVertices.d.ts → Curve/UICurveArcThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveAtIntersection.d.ts +26 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineAtIntersection.d.ts → Curve/UICurveByInterpolation.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByOffsetXYZ.d.ts → Curve/UICurveByOffsetXYZ.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByPoints.d.ts → Curve/UICurveByPoints.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByXYZ.d.ts → Curve/UICurveByXYZ.d.ts} +1 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineChamfer.d.ts → Curve/UICurveChamfer.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveCircleCenterVector.d.ts +30 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByInterpolation.d.ts → Curve/UICurveCircleThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineFillet.d.ts → Curve/UICurveFillet.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/{TransformationTools/Mirror/UIMirrorByVector.d.ts → CreationTools/Curve/UICurveTangentToLines.d.ts} +1 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildShell.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildSolid.d.ts +3 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildWire.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractPoint.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractShell.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractSolid.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractWire.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByEdges.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtension.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtrusion.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByFilling.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByOffset.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByReconstruction.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByRevolute.d.ts +12 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweep.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweepbiNormal.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceMidsurface.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFacebyLoft.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Index.d.ts +29 -45
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCOG.d.ts +40 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCenter.d.ts +9 -21
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtIntersection.d.ts +16 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByInterpolation.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByParameters.d.ts +14 -11
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointOnVertex.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesBox.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCone.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCylinder.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesDisc.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesRectangle.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesSphere.d.ts +8 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesTorus.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByBoundary.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByExtrusion.d.ts +15 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByLoft.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByRevolute.d.ts +12 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidBySweep.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/Delete/UIDeleteShape.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/UISplitFace.d.ts +0 -26
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIMeasureDistance.d.ts +1 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIPointCoordinates.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Index.d.ts +6 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Location/UILocationByCoordinateTransformation.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByFace.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByLine.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPoint.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnFace.d.ts +0 -16
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnLine.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Rotate/UIRotateByVectorAndAngle.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Scale/UIScaleByXYZ.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslate.d.ts +0 -62
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVector.d.ts +15 -39
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVectorAndLength.d.ts +16 -40
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIBeam.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIConcentratedLoad.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIContactPair.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UICustomMaterial.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDashpot.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicHarmonic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicImplicit.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UILinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMass.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMembrane.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIModal.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMotionConstraint.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UINonlinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIOutputControl.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIShell.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISolid.d.ts +2 -2
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISpring.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Advanced/UIMeshLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Basic/UIRigidCoupling.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UICreateNode.d.ts +0 -14
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshPatch.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIRemesh.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIBoundary2D.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIExtrude.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Manual/UICreateElement.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_3D/Advanced/UIMeshVolume.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByElements.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByNodes.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UIFreeBorders.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/OptionsMenu/Operations/RunSimulation/RunSimulationOperation.d.ts +19 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/Topbar/Operations/FindByIdOperation.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +6 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Index.d.ts +5 -5
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/ModelData.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/{TopoLine.d.ts → TopoCurve.d.ts} +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts} +3 -3
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/GeomLoader.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionHelpers.d.ts +25 -1
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +6 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +20 -3
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts +2 -1
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/FindNodeElement.d.ts +22 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Index.d.ts +2 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/Transparency.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/ViewerEntities/VisibleEntities/Tooltip.d.ts +14 -0
- package/package.json +5 -3
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineArcCenterVector.d.ts +0 -54
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleCenterVector.d.ts +0 -55
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleThreeVertices.d.ts +0 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineTangentToLines.d.ts +0 -52
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPlane.d.ts +0 -23
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByDXDYXZ.d.ts +0 -41
|
@@ -8,9 +8,6 @@ export declare class Extrude extends Operation {
|
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private numberInput;
|
|
11
|
-
private availableEntities_1;
|
|
12
|
-
private availableEntities_2;
|
|
13
|
-
private availableEntities_3;
|
|
14
11
|
private entityDropDownMenu_1;
|
|
15
12
|
private entityDropDownMenu_2;
|
|
16
13
|
private entityDropDownMenu_3;
|
|
@@ -28,12 +25,6 @@ export declare class Extrude extends Operation {
|
|
|
28
25
|
private addEntityButton_1;
|
|
29
26
|
private addEntityButton_2;
|
|
30
27
|
private addEntityButton_3;
|
|
31
|
-
/**
|
|
32
|
-
* Create dropdown list for entityButton
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems_1;
|
|
35
|
-
private createDropdownListItems_2;
|
|
36
|
-
private createDropdownListItems_3;
|
|
37
28
|
private addFields;
|
|
38
29
|
private addActionButtons;
|
|
39
30
|
/**
|
|
@@ -15,7 +15,6 @@ export declare class CreateElement extends Operation {
|
|
|
15
15
|
private elementShapeOptions;
|
|
16
16
|
private elementTypeOptions;
|
|
17
17
|
private elementOrderOptions;
|
|
18
|
-
private readonly availableEntities;
|
|
19
18
|
private selectionData;
|
|
20
19
|
private element2DMaterial;
|
|
21
20
|
uiComponents: IViewerHtmlElement[];
|
|
@@ -26,10 +25,6 @@ export declare class CreateElement extends Operation {
|
|
|
26
25
|
* Add entity button
|
|
27
26
|
*/
|
|
28
27
|
private addEntityButton;
|
|
29
|
-
/**
|
|
30
|
-
* Create dropdown list for entityButton
|
|
31
|
-
*/
|
|
32
|
-
private createDropdownListItems;
|
|
33
28
|
/**
|
|
34
29
|
* Add dropdown list
|
|
35
30
|
*/
|
|
@@ -13,7 +13,6 @@ export declare class MeshVolume extends Operation {
|
|
|
13
13
|
private readonly inputContainer;
|
|
14
14
|
private elementOrderOptions;
|
|
15
15
|
private elementSize;
|
|
16
|
-
private readonly availableEntities;
|
|
17
16
|
private selectionData;
|
|
18
17
|
private uiComponents;
|
|
19
18
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class MeshVolume extends Operation {
|
|
|
23
22
|
* Add entity button
|
|
24
23
|
*/
|
|
25
24
|
private addEntityButton;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Add input field
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class MergeByElements extends Operation {
|
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private affectedElementUIDs;
|
|
11
11
|
private toleranceInput;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entityDropDownMenu;
|
|
14
13
|
private entity;
|
|
15
14
|
private tolerance;
|
|
@@ -24,10 +23,6 @@ export declare class MergeByElements extends Operation {
|
|
|
24
23
|
* Add entity button
|
|
25
24
|
*/
|
|
26
25
|
private addEntityButton;
|
|
27
|
-
/**
|
|
28
|
-
* Create dropdown list for entityButton
|
|
29
|
-
*/
|
|
30
|
-
private createDropdownListItems;
|
|
31
26
|
private addFields;
|
|
32
27
|
private addActionButtons;
|
|
33
28
|
/**
|
|
@@ -8,8 +8,6 @@ export declare class MergeByNodes extends Operation {
|
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
10
|
private affectedElementUIDs;
|
|
11
|
-
private availableEntities_1;
|
|
12
|
-
private availableEntities_2;
|
|
13
11
|
private entityDropDownMenu_1;
|
|
14
12
|
private entityDropDownMenu_2;
|
|
15
13
|
private selectionData;
|
|
@@ -23,11 +21,6 @@ export declare class MergeByNodes extends Operation {
|
|
|
23
21
|
*/
|
|
24
22
|
private addEntityButton_1;
|
|
25
23
|
private addEntityButton_2;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems_1;
|
|
30
|
-
private createDropdownListItems_2;
|
|
31
24
|
private addActionButtons;
|
|
32
25
|
/**
|
|
33
26
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -15,7 +15,6 @@ export declare class CheckNormals extends Operation {
|
|
|
15
15
|
private readonly onReverseHandler;
|
|
16
16
|
private readonly onHideHandler;
|
|
17
17
|
private readonly buttonsContainer;
|
|
18
|
-
private availableEntities;
|
|
19
18
|
private entity;
|
|
20
19
|
private selectionData;
|
|
21
20
|
constructor(onShow?: OnShowHandler, onReverse?: OnReverseHandler, onHide?: OnHideHandler);
|
|
@@ -31,10 +30,6 @@ export declare class CheckNormals extends Operation {
|
|
|
31
30
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
32
31
|
*/
|
|
33
32
|
private addActionButtons;
|
|
34
|
-
/**
|
|
35
|
-
* Create dropdown list for entityButton
|
|
36
|
-
*/
|
|
37
|
-
private createDropdownListItems;
|
|
38
33
|
/**
|
|
39
34
|
* Initializes uiComponents on opening the operationUI
|
|
40
35
|
*/
|
|
@@ -8,7 +8,6 @@ export declare class FreeBorders extends Operation {
|
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private availableEntities;
|
|
12
11
|
private entityDropDownMenu;
|
|
13
12
|
private entity;
|
|
14
13
|
private iBorders;
|
|
@@ -23,10 +22,6 @@ export declare class FreeBorders extends Operation {
|
|
|
23
22
|
* Add entity button
|
|
24
23
|
*/
|
|
25
24
|
private addEntityButton;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
private addActionButtons;
|
|
31
26
|
/**
|
|
32
27
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -8,12 +8,17 @@ type ComputationalParams = {
|
|
|
8
8
|
time_limit: number;
|
|
9
9
|
tpsjob: number;
|
|
10
10
|
};
|
|
11
|
+
type MeshDomainPayload = {
|
|
12
|
+
mesh_scope: string;
|
|
13
|
+
selected_mesh_component_ids: number[];
|
|
14
|
+
selected_element_ids: number[];
|
|
15
|
+
};
|
|
11
16
|
type RunSimulationConfig = {
|
|
12
17
|
onRunSimulation: (data: {
|
|
13
18
|
jobName: string;
|
|
14
19
|
analysisStepItemId: number;
|
|
15
20
|
analysisName?: string;
|
|
16
|
-
} & ComputationalParams) => Promise<boolean>;
|
|
21
|
+
} & ComputationalParams & MeshDomainPayload) => Promise<boolean>;
|
|
17
22
|
};
|
|
18
23
|
export declare class RunSimulationOperation extends Operation {
|
|
19
24
|
private readonly onRunSimulation;
|
|
@@ -23,6 +28,10 @@ export declare class RunSimulationOperation extends Operation {
|
|
|
23
28
|
private simulationButtons;
|
|
24
29
|
private computationalParamsDetails;
|
|
25
30
|
private computationalParamsContainer;
|
|
31
|
+
private meshDomainDetails;
|
|
32
|
+
private meshDomainContainer;
|
|
33
|
+
private meshDomainSelect;
|
|
34
|
+
private meshScope;
|
|
26
35
|
private nameInput;
|
|
27
36
|
private jobName;
|
|
28
37
|
private analysisStepSelectionInput;
|
|
@@ -37,10 +46,13 @@ export declare class RunSimulationOperation extends Operation {
|
|
|
37
46
|
private computationalParams;
|
|
38
47
|
private runButton;
|
|
39
48
|
private static readonly DEFAULT_PARAMS;
|
|
49
|
+
private static readonly DEFAULT_MESH_SCOPE;
|
|
50
|
+
private static readonly MESH_DOMAIN_OPTIONS;
|
|
40
51
|
constructor(config?: RunSimulationConfig);
|
|
41
52
|
private buildContainers;
|
|
42
53
|
private addFields;
|
|
43
54
|
private createNumberField;
|
|
55
|
+
private buildMeshDomainSection;
|
|
44
56
|
private buildComputationalParamsSection;
|
|
45
57
|
private addAnalysisStepSelectionInput;
|
|
46
58
|
private addActionButtons;
|
|
@@ -53,6 +65,12 @@ export declare class RunSimulationOperation extends Operation {
|
|
|
53
65
|
* Resets the gui elements to default
|
|
54
66
|
*/
|
|
55
67
|
reset(): void;
|
|
68
|
+
/**
|
|
69
|
+
* Build the Mesh Domain payload using the same helpers as the Export Mesh
|
|
70
|
+
* flow so the Service sees an identical payload shape for both entry
|
|
71
|
+
* points. Returns null if validation fails (and surfaces a toast).
|
|
72
|
+
*/
|
|
73
|
+
private buildMeshDomainPayload;
|
|
56
74
|
private runSimulation;
|
|
57
75
|
}
|
|
58
76
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Operation } from "../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
export type OnAcceptHandler = () => void;
|
|
2
|
+
export type OnAcceptHandler = (id: number) => void;
|
|
3
3
|
export type OnIdOnOffHandler = () => void;
|
|
4
4
|
export type OnSaveHandler = () => void;
|
|
5
5
|
export declare class FindByIdOperation extends Operation {
|
|
@@ -61,10 +61,16 @@ export declare class StatusBar {
|
|
|
61
61
|
*/
|
|
62
62
|
private copyLogsButton;
|
|
63
63
|
private closeLogsButton;
|
|
64
|
+
private versionBadge;
|
|
64
65
|
/**
|
|
65
66
|
* Private constructor.
|
|
66
67
|
*/
|
|
67
68
|
private constructor();
|
|
69
|
+
/**
|
|
70
|
+
* Fetches the service version from the backend and displays it
|
|
71
|
+
* as a badge on the right end of the status bar.
|
|
72
|
+
*/
|
|
73
|
+
private _fetchAndDisplayVersion;
|
|
68
74
|
/**
|
|
69
75
|
* Getter for singleton instance.
|
|
70
76
|
*/
|
|
@@ -15,7 +15,7 @@ import * as TopoFace from './Shapes/Geometry/SubshapeTypes/TopoFace';
|
|
|
15
15
|
import * as TopoEdge from './Shapes/Geometry/SubshapeTypes/TopoEdge';
|
|
16
16
|
import * as TopoVertex from './Shapes/Geometry/SubshapeTypes/TopoVertex';
|
|
17
17
|
import * as TopoPoint from './Shapes/Geometry/MainshapeTypes/TopoPoint';
|
|
18
|
-
import * as
|
|
18
|
+
import * as TopoCurve from './Shapes/Geometry/MainshapeTypes/TopoCurve';
|
|
19
19
|
import * as TopoSurface from './Shapes/Geometry/MainshapeTypes/TopoSurface';
|
|
20
20
|
import * as TopoWire from './Shapes/Geometry/MainshapeTypes/TopoWire';
|
|
21
21
|
import * as TopoShell from './Shapes/Geometry/MainshapeTypes/TopoShell';
|
|
@@ -269,7 +269,7 @@ export declare namespace ModelData {
|
|
|
269
269
|
uniqueID_To_Instance: {};
|
|
270
270
|
vectorVID_To_iVector: {};
|
|
271
271
|
faceVID_To_iFace: {};
|
|
272
|
-
|
|
272
|
+
curveVID_To_iCurve: {};
|
|
273
273
|
edgeVID_To_iEdge: {};
|
|
274
274
|
pointVID_To_iPoint: {};
|
|
275
275
|
vertexVID_To_iVertex: {};
|
|
@@ -299,7 +299,7 @@ export declare namespace ModelData {
|
|
|
299
299
|
TopoShell: typeof TopoShell.TopoShell;
|
|
300
300
|
TopoWire: typeof TopoWire.TopoWire;
|
|
301
301
|
TopoSurface: typeof TopoSurface.TopoSurface;
|
|
302
|
-
|
|
302
|
+
TopoCurve: typeof TopoCurve.TopoCurve;
|
|
303
303
|
TopoPoint: typeof TopoPoint.TopoPoint;
|
|
304
304
|
TopoVertex: typeof TopoVertex.TopoVertex;
|
|
305
305
|
TopoEdge: typeof TopoEdge.TopoEdge;
|
|
@@ -345,7 +345,7 @@ export declare namespace ModelData {
|
|
|
345
345
|
TopoEdge = 1,
|
|
346
346
|
TopoVertex = 2,
|
|
347
347
|
TopoPoint = 3,
|
|
348
|
-
|
|
348
|
+
TopoCurve = 4,
|
|
349
349
|
TopoSurface = 5,
|
|
350
350
|
TopoWire = 6,
|
|
351
351
|
TopoShell = 7,
|
|
@@ -508,7 +508,7 @@ export declare namespace ModelData {
|
|
|
508
508
|
1: typeof TopoEdge.TopoEdge;
|
|
509
509
|
2: typeof TopoVertex.TopoVertex;
|
|
510
510
|
3: typeof TopoPoint.TopoPoint;
|
|
511
|
-
4: typeof
|
|
511
|
+
4: typeof TopoCurve.TopoCurve;
|
|
512
512
|
5: typeof TopoSurface.TopoSurface;
|
|
513
513
|
6: typeof TopoWire.TopoWire;
|
|
514
514
|
7: typeof TopoShell.TopoShell;
|
|
@@ -2,7 +2,7 @@ export declare namespace AssociativeArrays {
|
|
|
2
2
|
const uniqueID_To_Instance: {};
|
|
3
3
|
const vectorVID_To_iVector: {};
|
|
4
4
|
const faceVID_To_iFace: {};
|
|
5
|
-
const
|
|
5
|
+
const curveVID_To_iCurve: {};
|
|
6
6
|
const edgeVID_To_iEdge: {};
|
|
7
7
|
const pointVID_To_iPoint: {};
|
|
8
8
|
const vertexVID_To_iVertex: {};
|
|
@@ -2,7 +2,7 @@ import * as THREE from '../../../../../three/build/three.module';
|
|
|
2
2
|
import { ModelData } from "../../../Index";
|
|
3
3
|
import { Shape } from "../../TopoShape";
|
|
4
4
|
import { LineOctree } from '../../../OctreeDataStructure/Octree';
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class TopoCurve extends Shape {
|
|
6
6
|
static title: string;
|
|
7
7
|
type: ModelData.dataTypes;
|
|
8
8
|
itemVID: number;
|
|
@@ -28,6 +28,10 @@ export declare class SelectionData {
|
|
|
28
28
|
static instance: SelectionData;
|
|
29
29
|
static enabledEntity: ModelData.dataTypes;
|
|
30
30
|
static availableEntities: ModelData.dataTypes[];
|
|
31
|
+
private static readonly selectionChangedCallbacks;
|
|
32
|
+
static subscribeToSelectionChanged(cb: () => void): void;
|
|
33
|
+
static unsubscribeFromSelectionChanged(cb: () => void): void;
|
|
34
|
+
static notifySelectionChanged(): void;
|
|
31
35
|
static activeButton: any;
|
|
32
36
|
static currentItem: File;
|
|
33
37
|
static defualtButton: any;
|
package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ModelData } from "../../DataStorage/ModelData/Index";
|
|
2
2
|
import { GeomLoader } from "./GeomLoader";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class CurveLoader {
|
|
4
4
|
geomLoader: GeomLoader;
|
|
5
|
-
|
|
5
|
+
iCurve: InstanceType<typeof ModelData.Shapes.TopoCurve>;
|
|
6
6
|
constructor(geomLoader: GeomLoader);
|
|
7
7
|
loadVertex(iShape: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/SubshapeTypes/TopoVertex").TopoVertex;
|
|
8
|
-
|
|
8
|
+
loadCurve(iCurve: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/TopoCurve").TopoCurve;
|
|
9
9
|
}
|
|
@@ -10,7 +10,7 @@ export declare class GeomLoader {
|
|
|
10
10
|
vertexMaterial: THREE.ShaderMaterial;
|
|
11
11
|
pointMaterial: THREE.ShaderMaterial;
|
|
12
12
|
iPoints: InstanceType<typeof ModelData.Shapes.TopoPoint>[];
|
|
13
|
-
|
|
13
|
+
iCurves: InstanceType<typeof ModelData.Shapes.TopoCurve>[];
|
|
14
14
|
iFaces: InstanceType<typeof ModelData.Shapes.TopoFace>[];
|
|
15
15
|
iEdges: InstanceType<typeof ModelData.Shapes.TopoEdge>[];
|
|
16
16
|
iVertices: InstanceType<typeof ModelData.Shapes.TopoVertex>[];
|
package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts
CHANGED
|
@@ -26,8 +26,8 @@ export declare namespace EntitySelector {
|
|
|
26
26
|
class Vertex {
|
|
27
27
|
constructor(button_vertex: any);
|
|
28
28
|
}
|
|
29
|
-
class
|
|
30
|
-
constructor(
|
|
29
|
+
class Curve {
|
|
30
|
+
constructor(button_curve: any);
|
|
31
31
|
}
|
|
32
32
|
class Edge {
|
|
33
33
|
constructor(button_edge: any);
|
|
@@ -5,12 +5,14 @@ import { Depth } from "./SelectionControls/SelectionControls";
|
|
|
5
5
|
* In case of geometry, this could the following:
|
|
6
6
|
* - Selected: Export the selected subshapes.
|
|
7
7
|
* - Instances: Export the compound of the selected instances.
|
|
8
|
+
* - Visible: Export whichever subshapes are currently rendered.
|
|
8
9
|
* - All: Combine all geometry instances into a single compound
|
|
9
10
|
*/
|
|
10
11
|
export declare enum EntitySelectionScope {
|
|
11
12
|
Selected = 0,
|
|
12
13
|
Instances = 1,
|
|
13
|
-
|
|
14
|
+
Visible = 2,
|
|
15
|
+
All = 3
|
|
14
16
|
}
|
|
15
17
|
export declare class SelectionHelpers {
|
|
16
18
|
/**
|
|
@@ -20,6 +22,28 @@ export declare class SelectionHelpers {
|
|
|
20
22
|
* @returns Array of integer IDs.
|
|
21
23
|
*/
|
|
22
24
|
static getSelectedInstanceIDs(filterForContainer?: ModelData.dataTypes.GeometryContainer | ModelData.dataTypes.MeshContainer | ModelData.dataTypes.Set): Number[];
|
|
25
|
+
/**
|
|
26
|
+
* Returns the backend-side element IDs of every currently selected mesh
|
|
27
|
+
* element (shapes whose data type is `TopoElement`). Shape UIDs carry an
|
|
28
|
+
* ELEMENT_ID_OFFSET to keep them globally unique on the viewer side, which
|
|
29
|
+
* is subtracted here to recover the engine's raw ElementId.
|
|
30
|
+
*
|
|
31
|
+
* @param filterForInstanceIdsOnly Optional restriction to elements that
|
|
32
|
+
* belong to one of the provided MeshPart instance IDs.
|
|
33
|
+
* @returns Deduplicated array of backend mesh element IDs.
|
|
34
|
+
*/
|
|
35
|
+
static getSelectedMeshElementIds(filterForInstanceIdsOnly?: Number[]): number[];
|
|
36
|
+
/**
|
|
37
|
+
* Returns the backend-side element IDs of every mesh element that is
|
|
38
|
+
* currently *rendered*. An element is considered visible when both its own
|
|
39
|
+
* `isVisible` flag is on AND its parent MeshPart item is visible.
|
|
40
|
+
*
|
|
41
|
+
* This is the scope payload for the `Visible` export option - it does not
|
|
42
|
+
* consult the selection buffer at all.
|
|
43
|
+
*
|
|
44
|
+
* @returns Deduplicated array of backend mesh element IDs.
|
|
45
|
+
*/
|
|
46
|
+
static getVisibleMeshElementIds(): number[];
|
|
23
47
|
/**
|
|
24
48
|
* Iterates over the current selection and returns the IDs
|
|
25
49
|
* of all the shapes that were selected.
|
|
@@ -14,6 +14,7 @@ export type EntityDropDownMenuType = {
|
|
|
14
14
|
items?: {
|
|
15
15
|
[key: string]: Button;
|
|
16
16
|
};
|
|
17
|
+
availableEntities?: ModelData.dataTypes[];
|
|
17
18
|
onClickHandler?: (entityButton: EntityButton) => void;
|
|
18
19
|
onChangeHandler?: (type: ModelData.dataTypes) => void;
|
|
19
20
|
};
|
|
@@ -28,6 +29,9 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
28
29
|
private readonly element;
|
|
29
30
|
private readonly label;
|
|
30
31
|
private contentContainer;
|
|
32
|
+
private countBadge;
|
|
33
|
+
private _countText;
|
|
34
|
+
private readonly _selectionCallback;
|
|
31
35
|
private isOpened;
|
|
32
36
|
name: string;
|
|
33
37
|
private readonly handleDocumentClick;
|
|
@@ -37,6 +41,7 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
37
41
|
private style;
|
|
38
42
|
constructor(config: EntityDropDownMenuType);
|
|
39
43
|
private initContentContainer;
|
|
44
|
+
private static buildItems;
|
|
40
45
|
private onDropdownButtonClick;
|
|
41
46
|
private handleOnChange;
|
|
42
47
|
private open;
|
|
@@ -46,6 +51,7 @@ export declare class EntityButton implements IViewerHtmlElement {
|
|
|
46
51
|
remove(): void;
|
|
47
52
|
setHtmlParent(parent: HTMLElement): void;
|
|
48
53
|
setParent(parent: IViewerHtmlElement): void;
|
|
54
|
+
private refreshCountBadge;
|
|
49
55
|
reset(): void;
|
|
50
56
|
init(): void;
|
|
51
57
|
getData(): any;
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
import { DropdownList } from "./DropdownList";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { LabelConfig } from "./Label";
|
|
3
|
+
import { IViewerHtmlElement } from '../MainMenuComponents/HtmlElementInterface';
|
|
4
|
+
type ModeValueType = {
|
|
5
|
+
[key: number]: (() => void)[];
|
|
6
|
+
};
|
|
7
|
+
export type ModeOption = {
|
|
8
|
+
label: string;
|
|
9
|
+
value: ModeValueType;
|
|
10
|
+
isEnabled: boolean;
|
|
11
|
+
};
|
|
12
|
+
export type ModeSelectorConfig = {
|
|
13
|
+
id?: string;
|
|
14
|
+
options: ModeOption[];
|
|
15
|
+
dynamicComponents?: IViewerHtmlElement[];
|
|
16
|
+
labelConfig?: LabelConfig;
|
|
17
|
+
onMouseDownHandler?: () => void;
|
|
18
|
+
};
|
|
19
|
+
export declare class ModeSelector extends DropdownList<ModeValueType> {
|
|
20
|
+
constructor(config: ModeSelectorConfig);
|
|
5
21
|
validate(): boolean;
|
|
6
22
|
}
|
|
23
|
+
export {};
|
package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ export declare class LogMessageOperation implements IViewerHtmlElement {
|
|
|
7
7
|
private static _instance;
|
|
8
8
|
private readonly element;
|
|
9
9
|
private readonly diagnosticLogs;
|
|
10
|
-
|
|
10
|
+
private readonly operationFailureMessage;
|
|
11
|
+
constructor(diagnosticLog?: DiagnosticLog[], operationFailureMessage?: string);
|
|
11
12
|
/**
|
|
12
13
|
* Getter for singleton instance.
|
|
13
14
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
declare const ViewerCommands: {
|
|
2
|
+
QueryCommands: {
|
|
3
|
+
FindNodeElement: typeof import("./Query/FindNodeElement").FindNodeElement;
|
|
4
|
+
Find: typeof import("./Query/Find").Find;
|
|
5
|
+
};
|
|
2
6
|
ViewCommands: {
|
|
3
7
|
Screenshot: typeof import("./View/Screenshot").Screenshot;
|
|
4
8
|
RepresentationOption: typeof import("./View/Representation").RepresentationOption;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Command to find and highlight nodes/elements by their shapeUID,
|
|
3
|
+
* and to retrieve shapeUIDs of currently selected shapes.
|
|
4
|
+
*/
|
|
5
|
+
export declare class FindNodeElement {
|
|
6
|
+
/**
|
|
7
|
+
* Finds a node or element by its shapeUID and highlights it.
|
|
8
|
+
* @param uid The shapeUID to look up
|
|
9
|
+
* @returns The found shape instance, or null if not found
|
|
10
|
+
*/
|
|
11
|
+
static findByUID(uid: number): any;
|
|
12
|
+
/**
|
|
13
|
+
* Clears highlight from a node or element by its shapeUID.
|
|
14
|
+
* @param uid The shapeUID to unhighlight
|
|
15
|
+
*/
|
|
16
|
+
static clearHighlightByUID(uid: number): void;
|
|
17
|
+
/**
|
|
18
|
+
* Gets the shapeUIDs of currently selected shapes.
|
|
19
|
+
* @returns Array of shapeUIDs
|
|
20
|
+
*/
|
|
21
|
+
static getSelectedShapeUIDs(): number[];
|
|
22
|
+
}
|
|
@@ -4,6 +4,20 @@ export declare class Tooltip {
|
|
|
4
4
|
uniqueID_To_Instance: {};
|
|
5
5
|
constructor(target: HTMLElement);
|
|
6
6
|
setData(data: Record<string, string | number>): void;
|
|
7
|
+
/**
|
|
8
|
+
* Convert an itemColor array ([r,g,b] in 0-255) into a CSS rgb(...) string.
|
|
9
|
+
*/
|
|
10
|
+
private itemColorToRgb;
|
|
11
|
+
/**
|
|
12
|
+
* Return a display string for an associated file instance ('Name (ID)').
|
|
13
|
+
*/
|
|
14
|
+
private formatItemRef;
|
|
15
|
+
/**
|
|
16
|
+
* Build the per-data-type tooltip rows for an item instance.
|
|
17
|
+
* ID and Color are always included; additional rows depend on the
|
|
18
|
+
* item's dataType.
|
|
19
|
+
*/
|
|
20
|
+
private buildTooltipData;
|
|
7
21
|
private show;
|
|
8
22
|
private hide;
|
|
9
23
|
destroy(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcs-core-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "3D Viewer in the Cloud",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Femsolve Kft."
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"vserver": "webpack serve --config webpack.viewer3d-server.js --mode development",
|
|
16
16
|
"build:edev": "webpack --progress --stats-error-details --config webpack.editor3d-dev.js",
|
|
17
17
|
"build:eprod": "webpack --progress --stats-error-details --config webpack.editor3d-prod.js",
|
|
18
|
-
"eserver": "webpack serve --config webpack.editor3d-server.js --mode development"
|
|
18
|
+
"eserver": "webpack serve --config webpack.editor3d-server.js --mode development",
|
|
19
|
+
"docs": "typedoc --options Documentation/typedoc.json"
|
|
19
20
|
},
|
|
20
21
|
"license": "ISC",
|
|
21
22
|
"devDependencies": {
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"style-loader": "^3.3.2",
|
|
36
37
|
"tailwindcss": "^4.0.16",
|
|
37
38
|
"ts-loader": "^9.4.2",
|
|
39
|
+
"typedoc": "^0.25.0",
|
|
38
40
|
"typescript": "^4.9.5",
|
|
39
41
|
"webpack": "^5.89.0",
|
|
40
42
|
"webpack-cli": "^5.1.4",
|
|
@@ -47,7 +49,7 @@
|
|
|
47
49
|
"alpinejs": "^3.14.9",
|
|
48
50
|
"axios": "^1.5.1",
|
|
49
51
|
"dom-to-image": "^2.6.0",
|
|
50
|
-
"fcs-core-viewer": "
|
|
52
|
+
"fcs-core-viewer": "file:",
|
|
51
53
|
"nanostores": "^0.11.4",
|
|
52
54
|
"socket.io-client": "^4.7.2",
|
|
53
55
|
"uuid": "^9.0.1"
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
|
-
type OnAcceptHandler = (data: {}) => void;
|
|
4
|
-
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class LineArcCenterVector extends Operation {
|
|
6
|
-
private entityDropDownMenu_1;
|
|
7
|
-
private entityDropDownMenu_2;
|
|
8
|
-
private radiusInput;
|
|
9
|
-
private angleInput;
|
|
10
|
-
private readonly onPreviewHandler;
|
|
11
|
-
private readonly onAcceptHandler;
|
|
12
|
-
private readonly onRejectHandler;
|
|
13
|
-
private readonly buttonsContainer;
|
|
14
|
-
private readonly inputsContainer;
|
|
15
|
-
private availableEntities_1;
|
|
16
|
-
private availableEntities_2;
|
|
17
|
-
private entity_1;
|
|
18
|
-
private entity_2;
|
|
19
|
-
private radius;
|
|
20
|
-
private angle;
|
|
21
|
-
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
22
|
-
private setEnabledEntity_1;
|
|
23
|
-
private setActiveButton_1;
|
|
24
|
-
private setEnabledEntity_2;
|
|
25
|
-
private setActiveButton_2;
|
|
26
|
-
/**
|
|
27
|
-
* Add entity button
|
|
28
|
-
*/
|
|
29
|
-
private addEntityButton_1;
|
|
30
|
-
private addEntityButton_2;
|
|
31
|
-
private addFields;
|
|
32
|
-
/**
|
|
33
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
34
|
-
*/
|
|
35
|
-
private addActionButtons;
|
|
36
|
-
/**
|
|
37
|
-
* Create dropdown list for entityButton
|
|
38
|
-
*/
|
|
39
|
-
private createDropdownListItems_1;
|
|
40
|
-
private createDropdownListItems_2;
|
|
41
|
-
/**
|
|
42
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
43
|
-
*/
|
|
44
|
-
private onAccept;
|
|
45
|
-
/**
|
|
46
|
-
* Initializes uiComponents on opening the operationUI
|
|
47
|
-
*/
|
|
48
|
-
init(): void;
|
|
49
|
-
/**
|
|
50
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
51
|
-
*/
|
|
52
|
-
reset(): void;
|
|
53
|
-
}
|
|
54
|
-
export {};
|