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
|
@@ -1,42 +1,22 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class SolidByBoundary extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private facesButton;
|
|
7
7
|
private readonly onPreviewHandler;
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
11
|
+
private selectionData;
|
|
14
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private setEnabledEntity;
|
|
16
13
|
private setActiveButton;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*/
|
|
20
|
-
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
|
-
*/
|
|
24
|
-
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
|
-
/**
|
|
30
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
|
-
*/
|
|
14
|
+
private buildInput;
|
|
15
|
+
private onPreview;
|
|
32
16
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
17
|
+
private onReject;
|
|
18
|
+
unselect(): void;
|
|
36
19
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
20
|
reset(): void;
|
|
41
21
|
}
|
|
42
22
|
export {};
|
|
@@ -1,42 +1,29 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class SolidByExtrusion extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private profileButton;
|
|
7
|
+
private dxInput;
|
|
8
|
+
private dyInput;
|
|
9
|
+
private dzInput;
|
|
10
|
+
private dx;
|
|
11
|
+
private dy;
|
|
12
|
+
private dz;
|
|
7
13
|
private readonly onPreviewHandler;
|
|
8
14
|
private readonly onAcceptHandler;
|
|
9
15
|
private readonly onRejectHandler;
|
|
10
16
|
private readonly buttonsContainer;
|
|
11
17
|
private readonly inputsContainer;
|
|
12
|
-
private
|
|
13
|
-
private entity;
|
|
18
|
+
private selectionData;
|
|
14
19
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private setEnabledEntity;
|
|
16
20
|
private setActiveButton;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*/
|
|
20
|
-
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
|
-
*/
|
|
24
|
-
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
|
-
/**
|
|
30
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
|
-
*/
|
|
21
|
+
private buildInput;
|
|
22
|
+
private onPreview;
|
|
32
23
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
24
|
+
private onReject;
|
|
25
|
+
unselect(): void;
|
|
36
26
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
27
|
reset(): void;
|
|
41
28
|
}
|
|
42
29
|
export {};
|
|
@@ -1,42 +1,22 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class SolidByLoft extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private sectionsButton;
|
|
7
7
|
private readonly onPreviewHandler;
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
11
|
+
private selectionData;
|
|
14
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private setEnabledEntity;
|
|
16
13
|
private setActiveButton;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*/
|
|
20
|
-
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
|
-
*/
|
|
24
|
-
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
|
-
/**
|
|
30
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
|
-
*/
|
|
14
|
+
private buildInput;
|
|
15
|
+
private onPreview;
|
|
32
16
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
17
|
+
private onReject;
|
|
18
|
+
unselect(): void;
|
|
36
19
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
20
|
reset(): void;
|
|
41
21
|
}
|
|
42
22
|
export {};
|
|
@@ -1,42 +1,26 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class SolidByRevolute extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private profileButton;
|
|
7
|
+
private axisButton;
|
|
8
|
+
private angleInput;
|
|
9
|
+
private angle;
|
|
7
10
|
private readonly onPreviewHandler;
|
|
8
11
|
private readonly onAcceptHandler;
|
|
9
12
|
private readonly onRejectHandler;
|
|
10
13
|
private readonly buttonsContainer;
|
|
11
14
|
private readonly inputsContainer;
|
|
12
|
-
private
|
|
13
|
-
private entity;
|
|
15
|
+
private selectionData;
|
|
14
16
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private setEnabledEntity;
|
|
16
17
|
private setActiveButton;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*/
|
|
20
|
-
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
|
-
*/
|
|
24
|
-
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
|
-
/**
|
|
30
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
|
-
*/
|
|
18
|
+
private buildInput;
|
|
19
|
+
private onPreview;
|
|
32
20
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
21
|
+
private onReject;
|
|
22
|
+
unselect(): void;
|
|
36
23
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
24
|
reset(): void;
|
|
41
25
|
}
|
|
42
26
|
export {};
|
|
@@ -1,42 +1,23 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class SolidBySweep extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private profileButton;
|
|
7
|
+
private pathButton;
|
|
7
8
|
private readonly onPreviewHandler;
|
|
8
9
|
private readonly onAcceptHandler;
|
|
9
10
|
private readonly onRejectHandler;
|
|
10
11
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
12
|
+
private selectionData;
|
|
14
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private setEnabledEntity;
|
|
16
14
|
private setActiveButton;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*/
|
|
20
|
-
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
|
-
*/
|
|
24
|
-
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
|
-
/**
|
|
30
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
|
-
*/
|
|
15
|
+
private buildInput;
|
|
16
|
+
private onPreview;
|
|
32
17
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
18
|
+
private onReject;
|
|
19
|
+
unselect(): void;
|
|
36
20
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
21
|
reset(): void;
|
|
41
22
|
}
|
|
42
23
|
export {};
|
|
@@ -9,7 +9,6 @@ export declare class DeleteShape extends Operation {
|
|
|
9
9
|
private readonly OnRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private entity;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
15
14
|
private setActiveButton;
|
|
@@ -21,10 +20,6 @@ export declare class DeleteShape extends Operation {
|
|
|
21
20
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
22
21
|
*/
|
|
23
22
|
private addActionButtons;
|
|
24
|
-
/**
|
|
25
|
-
* Create dropdown list for entityButton
|
|
26
|
-
*/
|
|
27
|
-
private createDropdownListItems;
|
|
28
23
|
/**
|
|
29
24
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
30
25
|
*/
|
|
@@ -18,11 +18,6 @@ export declare class SplitFace extends Operation {
|
|
|
18
18
|
private readonly onAcceptHandler;
|
|
19
19
|
private readonly onRejectHandler;
|
|
20
20
|
private readonly buttonsContainer;
|
|
21
|
-
private availableEntities_1;
|
|
22
|
-
private availableEntities_2;
|
|
23
|
-
private availableEntities_3;
|
|
24
|
-
private availableEntities_4;
|
|
25
|
-
private availableEntities_5;
|
|
26
21
|
private dx;
|
|
27
22
|
private dy;
|
|
28
23
|
private dz;
|
|
@@ -40,7 +35,6 @@ export declare class SplitFace extends Operation {
|
|
|
40
35
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
41
36
|
private setEnabledEntity;
|
|
42
37
|
private setActiveButton;
|
|
43
|
-
private changeMode;
|
|
44
38
|
/**
|
|
45
39
|
* Add dropdown list
|
|
46
40
|
*/
|
|
@@ -49,26 +43,6 @@ export declare class SplitFace extends Operation {
|
|
|
49
43
|
* Add entity button
|
|
50
44
|
*/
|
|
51
45
|
private buttons;
|
|
52
|
-
/**
|
|
53
|
-
* Create dropdown list for entityButton_1
|
|
54
|
-
*/
|
|
55
|
-
private createDropdownListItems_1;
|
|
56
|
-
/**
|
|
57
|
-
* Create dropdown list for entityButton_2
|
|
58
|
-
*/
|
|
59
|
-
private createDropdownListItems_2;
|
|
60
|
-
/**
|
|
61
|
-
* Create dropdown list for entityButton_3
|
|
62
|
-
*/
|
|
63
|
-
private createDropdownListItems_3;
|
|
64
|
-
/**
|
|
65
|
-
* Create dropdown list for entityButton_4
|
|
66
|
-
*/
|
|
67
|
-
private createDropdownListItems_4;
|
|
68
|
-
/**
|
|
69
|
-
* Create dropdown list for entityButton_5
|
|
70
|
-
*/
|
|
71
|
-
private createDropdownListItems_5;
|
|
72
46
|
/**
|
|
73
47
|
* Add input field
|
|
74
48
|
*/
|
|
@@ -14,7 +14,6 @@ export declare class CheckNormals extends Operation {
|
|
|
14
14
|
private readonly onReverseHandler;
|
|
15
15
|
private readonly onHideHandler;
|
|
16
16
|
private readonly buttonsContainer;
|
|
17
|
-
private availableEntities;
|
|
18
17
|
private entity;
|
|
19
18
|
constructor(onShow?: OnShowHandler, onReverse?: OnReverseHandler, onHide?: OnHideHandler);
|
|
20
19
|
private setEnabledEntity;
|
|
@@ -29,10 +28,6 @@ export declare class CheckNormals extends Operation {
|
|
|
29
28
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
30
29
|
*/
|
|
31
30
|
private addActionButtons;
|
|
32
|
-
/**
|
|
33
|
-
* Create dropdown list for entityButton
|
|
34
|
-
*/
|
|
35
|
-
private createDropdownListItems;
|
|
36
31
|
/**
|
|
37
32
|
* Initializes uiComponents on opening the operationUI
|
|
38
33
|
*/
|
|
@@ -7,12 +7,10 @@ export declare class MeasureDistance extends Operation {
|
|
|
7
7
|
private readonly onAcceptHandler;
|
|
8
8
|
private readonly onRejectHandler;
|
|
9
9
|
private readonly buttonsContainer;
|
|
10
|
-
private availableEntities_1;
|
|
11
|
-
private availableEntities_2;
|
|
12
10
|
private element2DMaterial;
|
|
13
11
|
private entityDropDownMenu_1;
|
|
14
12
|
private entityDropDownMenu_2;
|
|
15
|
-
private
|
|
13
|
+
private distanceLineInput;
|
|
16
14
|
private createDistanceLines;
|
|
17
15
|
private selectionData;
|
|
18
16
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -24,11 +22,6 @@ export declare class MeasureDistance extends Operation {
|
|
|
24
22
|
*/
|
|
25
23
|
private addEntityButton_1;
|
|
26
24
|
private addEntityButton_2;
|
|
27
|
-
/**
|
|
28
|
-
* Create dropdown list for entityButton
|
|
29
|
-
*/
|
|
30
|
-
private createDropdownListItems_1;
|
|
31
|
-
private createDropdownListItems_2;
|
|
32
25
|
private addActionButtons;
|
|
33
26
|
/**
|
|
34
27
|
* Initializes uiComponents on opening the operationUI
|
|
@@ -9,7 +9,6 @@ export declare class PointCoordinates extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private method;
|
|
14
13
|
private minDegree;
|
|
15
14
|
private maxDegree;
|
|
@@ -25,10 +24,6 @@ export declare class PointCoordinates extends Operation {
|
|
|
25
24
|
* Add entity button
|
|
26
25
|
*/
|
|
27
26
|
private addEntityButton;
|
|
28
|
-
/**
|
|
29
|
-
* Create dropdown list for entityButton
|
|
30
|
-
*/
|
|
31
|
-
private createDropdownListItems;
|
|
32
27
|
/**
|
|
33
28
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
34
29
|
*/
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as LocationByCoordinateTransformation from "./Location/UILocationByCoordinateTransformation";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as MirrorByFace from "./Mirror/UIMirrorByFace";
|
|
3
|
+
import * as MirrorByLine from "./Mirror/UIMirrorByLine";
|
|
4
|
+
import * as MirrorByPoint from "./Mirror/UIMirrorByPoint";
|
|
4
5
|
import * as ProjectOnLine from "./Project/UIProjectOnLine";
|
|
5
6
|
import * as ProjectOnFace from "./Project/UIProjectOnFace";
|
|
6
7
|
import * as RotateByVectorAndAngle from "./Rotate/UIRotateByVectorAndAngle";
|
|
7
8
|
import * as ScaleByXYZ from "./Scale/UIScaleByXYZ";
|
|
8
9
|
import * as Translate from "./Translate/UITranslate";
|
|
9
|
-
import * as TranslateByDXDYXZ from "./Translate/UITranslateByDXDYXZ";
|
|
10
10
|
import * as TranslateByVector from "./Translate/UITranslateByVector";
|
|
11
11
|
import * as TranslateByVectorAndLength from "./Translate/UITranslateByVectorAndLength";
|
|
12
12
|
declare const TransformationTools: {
|
|
@@ -14,8 +14,9 @@ declare const TransformationTools: {
|
|
|
14
14
|
LocationByCoordinateTransformation: typeof LocationByCoordinateTransformation.LocationByCoordinateTransformation;
|
|
15
15
|
};
|
|
16
16
|
Mirror: {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
MirrorByPoint: typeof MirrorByPoint.MirrorByPoint;
|
|
18
|
+
MirrorByLine: typeof MirrorByLine.MirrorByLine;
|
|
19
|
+
MirrorByFace: typeof MirrorByFace.MirrorByFace;
|
|
19
20
|
};
|
|
20
21
|
Project: {
|
|
21
22
|
ProjectOnFace: typeof ProjectOnFace.ProjectOnFace;
|
|
@@ -30,7 +31,6 @@ declare const TransformationTools: {
|
|
|
30
31
|
Translate: {
|
|
31
32
|
TranslateByVectorAndLength: typeof TranslateByVectorAndLength.TranslateByVectorAndLength;
|
|
32
33
|
TranslateByVector: typeof TranslateByVector.TranslateByVector;
|
|
33
|
-
TranslateByDXDYDZ: typeof TranslateByDXDYXZ.TranslateByDXDYDZ;
|
|
34
34
|
Translate: typeof Translate.Translate;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
@@ -10,8 +10,6 @@ export declare class LocationByCoordinateTransformation extends Operation {
|
|
|
10
10
|
private readonly onRejectHandler;
|
|
11
11
|
private readonly buttonsContainer;
|
|
12
12
|
private readonly inputsContainer;
|
|
13
|
-
private availableEntities_1;
|
|
14
|
-
private availableEntities_2;
|
|
15
13
|
private entity_1;
|
|
16
14
|
private entity_2;
|
|
17
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -28,11 +26,6 @@ export declare class LocationByCoordinateTransformation extends Operation {
|
|
|
28
26
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
29
27
|
*/
|
|
30
28
|
private addActionButtons;
|
|
31
|
-
/**
|
|
32
|
-
* Create dropdown list for entityButton
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems_1;
|
|
35
|
-
private createDropdownListItems_2;
|
|
36
29
|
/**
|
|
37
30
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
38
31
|
*/
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class MirrorByFace extends Operation {
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
8
|
+
private readonly onPreviewHandler;
|
|
9
|
+
private readonly onAcceptHandler;
|
|
10
|
+
private readonly onRejectHandler;
|
|
11
|
+
private readonly buttonsContainer;
|
|
12
|
+
private selectionData;
|
|
13
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
|
+
private setEnabledEntity;
|
|
15
|
+
private setActiveButton;
|
|
16
|
+
/**
|
|
17
|
+
* Add entity buttons
|
|
18
|
+
*/
|
|
19
|
+
private addEntityButtons;
|
|
20
|
+
/**
|
|
21
|
+
* Add action buttons (-> Preview, Accept, Reject)
|
|
22
|
+
*/
|
|
23
|
+
private addActionButtons;
|
|
24
|
+
/**
|
|
25
|
+
* Builds the input object from current UI state
|
|
26
|
+
*/
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
29
|
+
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
|
+
/**
|
|
33
|
+
* Initializes uiComponents on opening the operationUI
|
|
34
|
+
*/
|
|
35
|
+
init(): void;
|
|
36
|
+
/**
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
38
|
+
*/
|
|
39
|
+
reset(): void;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class MirrorByLine extends Operation {
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
8
|
+
private readonly onPreviewHandler;
|
|
9
|
+
private readonly onAcceptHandler;
|
|
10
|
+
private readonly onRejectHandler;
|
|
11
|
+
private readonly buttonsContainer;
|
|
12
|
+
private selectionData;
|
|
13
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
|
+
private setEnabledEntity;
|
|
15
|
+
private setActiveButton;
|
|
16
|
+
/**
|
|
17
|
+
* Add entity buttons
|
|
18
|
+
*/
|
|
19
|
+
private addEntityButtons;
|
|
20
|
+
/**
|
|
21
|
+
* Add action buttons (-> Preview, Accept, Reject)
|
|
22
|
+
*/
|
|
23
|
+
private addActionButtons;
|
|
24
|
+
/**
|
|
25
|
+
* Builds the input object from current UI state
|
|
26
|
+
*/
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
29
|
+
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
|
+
/**
|
|
33
|
+
* Initializes uiComponents on opening the operationUI
|
|
34
|
+
*/
|
|
35
|
+
init(): void;
|
|
36
|
+
/**
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
38
|
+
*/
|
|
39
|
+
reset(): void;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class MirrorByPoint extends Operation {
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
8
|
+
private readonly onPreviewHandler;
|
|
9
|
+
private readonly onAcceptHandler;
|
|
10
|
+
private readonly onRejectHandler;
|
|
11
|
+
private readonly buttonsContainer;
|
|
12
|
+
private selectionData;
|
|
13
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
|
+
private setEnabledEntity;
|
|
15
|
+
private setActiveButton;
|
|
16
|
+
/**
|
|
17
|
+
* Add entity buttons
|
|
18
|
+
*/
|
|
19
|
+
private addEntityButtons;
|
|
20
|
+
/**
|
|
21
|
+
* Add action buttons (-> Preview, Accept, Reject)
|
|
22
|
+
*/
|
|
23
|
+
private addActionButtons;
|
|
24
|
+
/**
|
|
25
|
+
* Builds the input object from current UI state
|
|
26
|
+
*/
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
29
|
+
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
|
+
/**
|
|
33
|
+
* Initializes uiComponents on opening the operationUI
|
|
34
|
+
*/
|
|
35
|
+
init(): void;
|
|
36
|
+
/**
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
38
|
+
*/
|
|
39
|
+
reset(): void;
|
|
40
|
+
}
|
|
41
|
+
export {};
|
|
@@ -14,9 +14,6 @@ export declare class ProjectOnFace extends Operation {
|
|
|
14
14
|
private readonly onAcceptHandler;
|
|
15
15
|
private readonly onRejectHandler;
|
|
16
16
|
private readonly buttonsContainer;
|
|
17
|
-
private availableEntities_1;
|
|
18
|
-
private availableEntities_2;
|
|
19
|
-
private availableEntities_3;
|
|
20
17
|
private dx;
|
|
21
18
|
private dy;
|
|
22
19
|
private dz;
|
|
@@ -31,7 +28,6 @@ export declare class ProjectOnFace extends Operation {
|
|
|
31
28
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
32
29
|
private setEnabledEntity;
|
|
33
30
|
private setActiveButton;
|
|
34
|
-
private changeMode;
|
|
35
31
|
/**
|
|
36
32
|
* Add dropdown list
|
|
37
33
|
*/
|
|
@@ -40,18 +36,6 @@ export declare class ProjectOnFace extends Operation {
|
|
|
40
36
|
* Add entity button
|
|
41
37
|
*/
|
|
42
38
|
private buttons;
|
|
43
|
-
/**
|
|
44
|
-
* Create dropdown list for entityButton_1
|
|
45
|
-
*/
|
|
46
|
-
private createDropdownListItems_1;
|
|
47
|
-
/**
|
|
48
|
-
* Create dropdown list for entityButton_1
|
|
49
|
-
*/
|
|
50
|
-
private createDropdownListItems_2;
|
|
51
|
-
/**
|
|
52
|
-
* Create dropdown list for entityButton_1
|
|
53
|
-
*/
|
|
54
|
-
private createDropdownListItems_3;
|
|
55
39
|
/**
|
|
56
40
|
* Add input field
|
|
57
41
|
*/
|
|
@@ -10,8 +10,6 @@ export declare class ProjectOnLine extends Operation {
|
|
|
10
10
|
private readonly onRejectHandler;
|
|
11
11
|
private readonly buttonsContainer;
|
|
12
12
|
private readonly inputsContainer;
|
|
13
|
-
private availableEntities_1;
|
|
14
|
-
private availableEntities_2;
|
|
15
13
|
private selectionData;
|
|
16
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
17
15
|
private setEnabledEntity;
|
|
@@ -20,14 +18,6 @@ export declare class ProjectOnLine extends Operation {
|
|
|
20
18
|
* Add entity button
|
|
21
19
|
*/
|
|
22
20
|
private addEntityButton;
|
|
23
|
-
/**
|
|
24
|
-
* Create dropdown list for entityButton_1
|
|
25
|
-
*/
|
|
26
|
-
private createDropdownListItems_1;
|
|
27
|
-
/**
|
|
28
|
-
* Create dropdown list for entityButton_1
|
|
29
|
-
*/
|
|
30
|
-
private createDropdownListItems_2;
|
|
31
21
|
/**
|
|
32
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
33
23
|
*/
|
|
@@ -12,9 +12,6 @@ export declare class RotateByVectorAndAngle extends Operation {
|
|
|
12
12
|
private readonly onRejectHandler;
|
|
13
13
|
private readonly buttonsContainer;
|
|
14
14
|
private readonly inputsContainer;
|
|
15
|
-
private availableEntities_1;
|
|
16
|
-
private availableEntities_2;
|
|
17
|
-
private availableEntities_3;
|
|
18
15
|
private entity_1;
|
|
19
16
|
private entity_2;
|
|
20
17
|
private entity_3;
|
|
@@ -37,12 +34,6 @@ export declare class RotateByVectorAndAngle extends Operation {
|
|
|
37
34
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
38
35
|
*/
|
|
39
36
|
private addActionButtons;
|
|
40
|
-
/**
|
|
41
|
-
* Create dropdown list for entityButton
|
|
42
|
-
*/
|
|
43
|
-
private createDropdownListItems_1;
|
|
44
|
-
private createDropdownListItems_2;
|
|
45
|
-
private createDropdownListItems_3;
|
|
46
37
|
/**
|
|
47
38
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
48
39
|
*/
|