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
|
@@ -0,0 +1,40 @@
|
|
|
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 PointAtCOG extends Operation {
|
|
6
|
+
private entityDropDownMenu;
|
|
7
|
+
private readonly onPreviewHandler;
|
|
8
|
+
private readonly onAcceptHandler;
|
|
9
|
+
private readonly onRejectHandler;
|
|
10
|
+
private readonly buttonsContainer;
|
|
11
|
+
private selectionData;
|
|
12
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
13
|
+
private setEnabledEntity;
|
|
14
|
+
private setActiveButton;
|
|
15
|
+
/**
|
|
16
|
+
* Add entity button
|
|
17
|
+
*/
|
|
18
|
+
private addEntityButton;
|
|
19
|
+
/**
|
|
20
|
+
* Add action buttons (-> Preview, Accept, Reject)
|
|
21
|
+
*/
|
|
22
|
+
private addActionButtons;
|
|
23
|
+
/**
|
|
24
|
+
* Builds the input object from current UI state
|
|
25
|
+
*/
|
|
26
|
+
private buildInput;
|
|
27
|
+
private onPreview;
|
|
28
|
+
private onAccept;
|
|
29
|
+
private onReject;
|
|
30
|
+
unselect(): void;
|
|
31
|
+
/**
|
|
32
|
+
* Initializes uiComponents on opening the operationUI
|
|
33
|
+
*/
|
|
34
|
+
init(): void;
|
|
35
|
+
/**
|
|
36
|
+
* Resets the gui elements to default on closing the operationUI
|
|
37
|
+
*/
|
|
38
|
+
reset(): void;
|
|
39
|
+
}
|
|
40
|
+
export {};
|
|
@@ -1,37 +1,25 @@
|
|
|
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 PointAtCenter extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private readonly onPreviewHandler;
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
11
|
+
private selectionData;
|
|
12
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
13
13
|
private setEnabledEntity;
|
|
14
14
|
private setActiveButton;
|
|
15
|
-
/**
|
|
16
|
-
* Add entity button
|
|
17
|
-
*/
|
|
18
15
|
private addEntityButton;
|
|
19
|
-
/**
|
|
20
|
-
* Create dropdown list for entityButton
|
|
21
|
-
*/
|
|
22
|
-
private createDropdownListItems;
|
|
23
|
-
/**
|
|
24
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
25
|
-
*/
|
|
26
16
|
private addActionButtons;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
private buildInput;
|
|
18
|
+
private onPreview;
|
|
19
|
+
private onAccept;
|
|
20
|
+
private onReject;
|
|
21
|
+
unselect(): void;
|
|
30
22
|
init(): void;
|
|
31
|
-
/**
|
|
32
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
33
|
-
*/
|
|
34
23
|
reset(): void;
|
|
35
|
-
private onAccept;
|
|
36
24
|
}
|
|
37
25
|
export {};
|
|
@@ -1,40 +1,41 @@
|
|
|
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 PointAtIntersection extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
7
8
|
private readonly onPreviewHandler;
|
|
8
9
|
private readonly onAcceptHandler;
|
|
9
10
|
private readonly onRejectHandler;
|
|
10
11
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
12
|
+
private selectionData;
|
|
12
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
13
14
|
private setEnabledEntity;
|
|
14
15
|
private setActiveButton;
|
|
15
16
|
/**
|
|
16
|
-
* Add entity
|
|
17
|
+
* Add entity buttons
|
|
17
18
|
*/
|
|
18
|
-
private
|
|
19
|
+
private addEntityButtons;
|
|
19
20
|
/**
|
|
20
21
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
21
22
|
*/
|
|
22
23
|
private addActionButtons;
|
|
23
24
|
/**
|
|
24
|
-
*
|
|
25
|
+
* Builds the input object from current UI state
|
|
25
26
|
*/
|
|
26
|
-
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
29
|
+
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
27
32
|
/**
|
|
28
33
|
* Initializes uiComponents on opening the operationUI
|
|
29
34
|
*/
|
|
30
35
|
init(): void;
|
|
31
36
|
/**
|
|
32
|
-
*
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems;
|
|
35
|
-
/**
|
|
36
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
37
38
|
*/
|
|
38
|
-
|
|
39
|
+
reset(): void;
|
|
39
40
|
}
|
|
40
41
|
export {};
|
|
@@ -12,8 +12,6 @@ export declare class PointByInterpolation extends Operation {
|
|
|
12
12
|
private readonly onRejectHandler;
|
|
13
13
|
private readonly buttonsContainer;
|
|
14
14
|
private N;
|
|
15
|
-
private availableEntities_1;
|
|
16
|
-
private availableEntities_2;
|
|
17
15
|
private modeOptions;
|
|
18
16
|
private dynamicComponents;
|
|
19
17
|
private selectionData;
|
|
@@ -24,7 +22,6 @@ export declare class PointByInterpolation extends Operation {
|
|
|
24
22
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
25
23
|
private setEnabledEntity;
|
|
26
24
|
private setActiveButton;
|
|
27
|
-
private changeMode;
|
|
28
25
|
/**
|
|
29
26
|
* Add dropdown list
|
|
30
27
|
*/
|
|
@@ -33,11 +30,6 @@ export declare class PointByInterpolation extends Operation {
|
|
|
33
30
|
* Add entity button
|
|
34
31
|
*/
|
|
35
32
|
private buttons;
|
|
36
|
-
/**
|
|
37
|
-
* Create dropdown list for entityButton
|
|
38
|
-
*/
|
|
39
|
-
private createDropdownListItems_1;
|
|
40
|
-
private createDropdownListItems_2;
|
|
41
33
|
/**
|
|
42
34
|
* Add input field
|
|
43
35
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
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 PointByParameters extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private readonly onPreviewHandler;
|
|
@@ -9,39 +9,42 @@ export declare class PointByParameters extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private u;
|
|
14
13
|
private v;
|
|
15
14
|
private uInput;
|
|
16
15
|
private vInput;
|
|
17
16
|
private entity;
|
|
17
|
+
private selectionData;
|
|
18
18
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
19
19
|
private setEnabledEntity;
|
|
20
20
|
private setActiveButton;
|
|
21
21
|
private initHiddenInputs;
|
|
22
|
+
/**
|
|
23
|
+
* Show/hide U and V input fields based on selected entity type
|
|
24
|
+
*/
|
|
25
|
+
private updateFields;
|
|
22
26
|
/**
|
|
23
27
|
* Add entity button
|
|
24
28
|
*/
|
|
25
29
|
private addEntityButton;
|
|
26
|
-
private addFields;
|
|
27
30
|
/**
|
|
28
31
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
29
32
|
*/
|
|
30
33
|
private addActionButtons;
|
|
31
34
|
/**
|
|
32
|
-
*
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems;
|
|
35
|
-
/**
|
|
36
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
35
|
+
* Builds the input object from current UI state
|
|
37
36
|
*/
|
|
37
|
+
private buildInput;
|
|
38
|
+
private onPreview;
|
|
38
39
|
private onAccept;
|
|
40
|
+
private onReject;
|
|
41
|
+
unselect(): void;
|
|
39
42
|
/**
|
|
40
43
|
* Initializes uiComponents on opening the operationUI
|
|
41
44
|
*/
|
|
42
45
|
init(): void;
|
|
43
46
|
/**
|
|
44
|
-
* Resets the gui elements
|
|
47
|
+
* Resets the gui elements to default on closing the operationUI
|
|
45
48
|
*/
|
|
46
49
|
reset(): void;
|
|
47
50
|
}
|
|
@@ -8,7 +8,6 @@ export declare class PointOnVertex extends Operation {
|
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private availableEntities;
|
|
12
11
|
private selectionData;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
@@ -17,10 +16,6 @@ export declare class PointOnVertex extends Operation {
|
|
|
17
16
|
* Add entity button
|
|
18
17
|
*/
|
|
19
18
|
private addEntityButton;
|
|
20
|
-
/**
|
|
21
|
-
* Create dropdown list for entityButton
|
|
22
|
-
*/
|
|
23
|
-
private createDropdownListItems;
|
|
24
19
|
/**
|
|
25
20
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
26
21
|
*/
|
|
@@ -1,42 +1,25 @@
|
|
|
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 PrimitivesBox extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private dx;
|
|
7
|
+
private dy;
|
|
8
|
+
private dz;
|
|
9
|
+
private dxInput;
|
|
10
|
+
private dyInput;
|
|
11
|
+
private dzInput;
|
|
7
12
|
private readonly onPreviewHandler;
|
|
8
13
|
private readonly onAcceptHandler;
|
|
9
14
|
private readonly onRejectHandler;
|
|
10
15
|
private readonly buttonsContainer;
|
|
11
16
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
14
17
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
21
|
+
private onReject;
|
|
36
22
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
23
|
reset(): void;
|
|
41
24
|
}
|
|
42
25
|
export {};
|
|
@@ -1,42 +1,25 @@
|
|
|
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 PrimitivesCone extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private r1;
|
|
7
|
+
private r2;
|
|
8
|
+
private h;
|
|
9
|
+
private r1Input;
|
|
10
|
+
private r2Input;
|
|
11
|
+
private hInput;
|
|
7
12
|
private readonly onPreviewHandler;
|
|
8
13
|
private readonly onAcceptHandler;
|
|
9
14
|
private readonly onRejectHandler;
|
|
10
15
|
private readonly buttonsContainer;
|
|
11
16
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
14
17
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
21
|
+
private onReject;
|
|
36
22
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
23
|
reset(): void;
|
|
41
24
|
}
|
|
42
25
|
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 PrimitivesCylinder extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private r;
|
|
7
|
+
private h;
|
|
8
|
+
private rInput;
|
|
9
|
+
private hInput;
|
|
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 availableEntities;
|
|
13
|
-
private entity;
|
|
14
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
*/
|
|
16
|
+
private buildInput;
|
|
17
|
+
private onPreview;
|
|
32
18
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
19
|
+
private onReject;
|
|
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 {};
|
|
@@ -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 PrimitivesDisc extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private r;
|
|
7
|
+
private orientation;
|
|
8
|
+
private rInput;
|
|
9
|
+
private orientationDropdown;
|
|
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 availableEntities;
|
|
13
|
-
private entity;
|
|
14
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
*/
|
|
16
|
+
private buildInput;
|
|
17
|
+
private onPreview;
|
|
32
18
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
19
|
+
private onReject;
|
|
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 {};
|
|
@@ -1,42 +1,25 @@
|
|
|
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 PrimitivesRectangle extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private h;
|
|
7
|
+
private w;
|
|
8
|
+
private orientation;
|
|
9
|
+
private hInput;
|
|
10
|
+
private wInput;
|
|
11
|
+
private orientationDropdown;
|
|
7
12
|
private readonly onPreviewHandler;
|
|
8
13
|
private readonly onAcceptHandler;
|
|
9
14
|
private readonly onRejectHandler;
|
|
10
15
|
private readonly buttonsContainer;
|
|
11
16
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
14
17
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
21
|
+
private onReject;
|
|
36
22
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
23
|
reset(): void;
|
|
41
24
|
}
|
|
42
25
|
export {};
|
|
@@ -1,42 +1,21 @@
|
|
|
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 PrimitivesSphere extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private r;
|
|
7
|
+
private rInput;
|
|
7
8
|
private readonly onPreviewHandler;
|
|
8
9
|
private readonly onAcceptHandler;
|
|
9
10
|
private readonly onRejectHandler;
|
|
10
11
|
private readonly buttonsContainer;
|
|
11
12
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
|
-
private entity;
|
|
14
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
17
|
+
private onReject;
|
|
36
18
|
init(): void;
|
|
37
|
-
/**
|
|
38
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
39
|
-
*/
|
|
40
19
|
reset(): void;
|
|
41
20
|
}
|
|
42
21
|
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 PrimitivesTorus extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private rMajor;
|
|
7
|
+
private rMinor;
|
|
8
|
+
private rMajorInput;
|
|
9
|
+
private rMinorInput;
|
|
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 availableEntities;
|
|
13
|
-
private entity;
|
|
14
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
/**
|
|
18
|
-
* Add entity button
|
|
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
|
-
*/
|
|
16
|
+
private buildInput;
|
|
17
|
+
private onPreview;
|
|
32
18
|
private onAccept;
|
|
33
|
-
|
|
34
|
-
* Initializes uiComponents on opening the operationUI
|
|
35
|
-
*/
|
|
19
|
+
private onReject;
|
|
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 {};
|