fcs-core-viewer 0.49.0 → 0.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +1 -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 +51 -4
- package/fcs-core-editor@types/Editor3D/Operations/CAD/InspectionTools/OpMeasureDistance.d.ts +2 -1
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpTranslate.d.ts +3 -6
- package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +51 -4
- package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +35 -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/CreationTools/{Line/UILineTangentToLines.d.ts → Curve/UICurveTangentToLines.d.ts} +1 -11
- 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 +0 -2
- 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/UIMirrorByVector.d.ts +0 -7
- 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 +1 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +1 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +1 -9
- 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/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 +140 -134
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/CSystem.d.ts +20 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/Orientation.d.ts +20 -0
- 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/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +8 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +21 -3
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/SelectionInputField.d.ts +2 -0
- 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/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/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 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
|
*/
|
|
@@ -6,7 +6,6 @@ import * as ProjectOnFace from "./Project/UIProjectOnFace";
|
|
|
6
6
|
import * as RotateByVectorAndAngle from "./Rotate/UIRotateByVectorAndAngle";
|
|
7
7
|
import * as ScaleByXYZ from "./Scale/UIScaleByXYZ";
|
|
8
8
|
import * as Translate from "./Translate/UITranslate";
|
|
9
|
-
import * as TranslateByDXDYXZ from "./Translate/UITranslateByDXDYXZ";
|
|
10
9
|
import * as TranslateByVector from "./Translate/UITranslateByVector";
|
|
11
10
|
import * as TranslateByVectorAndLength from "./Translate/UITranslateByVectorAndLength";
|
|
12
11
|
declare const TransformationTools: {
|
|
@@ -30,7 +29,6 @@ declare const TransformationTools: {
|
|
|
30
29
|
Translate: {
|
|
31
30
|
TranslateByVectorAndLength: typeof TranslateByVectorAndLength.TranslateByVectorAndLength;
|
|
32
31
|
TranslateByVector: typeof TranslateByVector.TranslateByVector;
|
|
33
|
-
TranslateByDXDYDZ: typeof TranslateByDXDYXZ.TranslateByDXDYDZ;
|
|
34
32
|
Translate: typeof Translate.Translate;
|
|
35
33
|
};
|
|
36
34
|
};
|
|
@@ -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
|
*/
|
|
@@ -10,8 +10,6 @@ export declare class MirrorByVector 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 MirrorByVector 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
|
*/
|
|
@@ -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
|
*/
|
|
@@ -14,9 +14,6 @@ export declare class ScaleByXYZ extends Operation {
|
|
|
14
14
|
private readonly onRejectHandler;
|
|
15
15
|
private readonly buttonsContainer;
|
|
16
16
|
private readonly inputsContainer;
|
|
17
|
-
private availableEntities_1;
|
|
18
|
-
private availableEntities_2;
|
|
19
|
-
private availableEntities_3;
|
|
20
17
|
private entity_1;
|
|
21
18
|
private entity_2;
|
|
22
19
|
private entity_3;
|
|
@@ -41,12 +38,6 @@ export declare class ScaleByXYZ extends Operation {
|
|
|
41
38
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
42
39
|
*/
|
|
43
40
|
private addActionButtons;
|
|
44
|
-
/**
|
|
45
|
-
* Create dropdown list for entityButton
|
|
46
|
-
*/
|
|
47
|
-
private createDropdownListItems_1;
|
|
48
|
-
private createDropdownListItems_2;
|
|
49
|
-
private createDropdownListItems_3;
|
|
50
41
|
/**
|
|
51
42
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
52
43
|
*/
|
|
@@ -4,91 +4,29 @@ type OnAcceptHandler = (input: {}) => Promise<{}>;
|
|
|
4
4
|
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class Translate extends Operation {
|
|
6
6
|
private entityDropDownMenu_1;
|
|
7
|
-
private entityDropDownMenu_2;
|
|
8
|
-
private entityDropDownMenu_3;
|
|
9
|
-
private entityDropDownMenu_4;
|
|
10
|
-
private entityDropDownMenu_5;
|
|
11
7
|
private dxInput;
|
|
12
8
|
private dyInput;
|
|
13
9
|
private dzInput;
|
|
14
|
-
private modeSelector;
|
|
15
10
|
private readonly onPreviewHandler;
|
|
16
11
|
private readonly onAcceptHandler;
|
|
17
12
|
private readonly onRejectHandler;
|
|
18
13
|
private readonly buttonsContainer;
|
|
19
|
-
private availableEntities_1;
|
|
20
|
-
private availableEntities_2;
|
|
21
|
-
private availableEntities_3;
|
|
22
|
-
private availableEntities_4;
|
|
23
|
-
private availableEntities_5;
|
|
24
14
|
private affectedElementUIDs;
|
|
25
15
|
private dx;
|
|
26
16
|
private dy;
|
|
27
17
|
private dz;
|
|
28
|
-
private modeOptions;
|
|
29
18
|
private dynamicComponents;
|
|
30
19
|
private selectionData;
|
|
31
|
-
static Modes: {
|
|
32
|
-
DxDyDz: number;
|
|
33
|
-
Nodes: number;
|
|
34
|
-
Vector: number;
|
|
35
|
-
};
|
|
36
20
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
37
21
|
private setEnabledEntity;
|
|
38
22
|
private setActiveButton;
|
|
39
|
-
private changeMode;
|
|
40
|
-
/**
|
|
41
|
-
* Add dropdown list
|
|
42
|
-
*/
|
|
43
|
-
private addDropDownLists;
|
|
44
|
-
/**
|
|
45
|
-
* Add entity button
|
|
46
|
-
*/
|
|
47
23
|
private buttons;
|
|
48
|
-
/**
|
|
49
|
-
* Create dropdown list for entityButton_1
|
|
50
|
-
*/
|
|
51
|
-
private createDropdownListItems_1;
|
|
52
|
-
/**
|
|
53
|
-
* Create dropdown list for entityButton_2
|
|
54
|
-
*/
|
|
55
|
-
private createDropdownListItems_2;
|
|
56
|
-
/**
|
|
57
|
-
* Create dropdown list for entityButton_3
|
|
58
|
-
*/
|
|
59
|
-
private createDropdownListItems_3;
|
|
60
|
-
/**
|
|
61
|
-
* Create dropdown list for entityButton_4
|
|
62
|
-
*/
|
|
63
|
-
private createDropdownListItems_4;
|
|
64
|
-
/**
|
|
65
|
-
* Create dropdown list for entityButton_5
|
|
66
|
-
*/
|
|
67
|
-
private createDropdownListItems_5;
|
|
68
|
-
/**
|
|
69
|
-
* Add input field
|
|
70
|
-
*/
|
|
71
24
|
private fields;
|
|
72
|
-
/**
|
|
73
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
74
|
-
*/
|
|
75
25
|
private addActionButtons;
|
|
76
|
-
/**
|
|
77
|
-
* Initializes uiComponents on opening the operationUI
|
|
78
|
-
*/
|
|
79
26
|
init(): void;
|
|
80
|
-
/**
|
|
81
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
82
|
-
*/
|
|
83
27
|
unselect(): void;
|
|
84
|
-
/**
|
|
85
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
86
|
-
*/
|
|
87
28
|
reset(): void;
|
|
88
29
|
private onPreview;
|
|
89
|
-
/**
|
|
90
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
91
|
-
*/
|
|
92
30
|
private onAccept;
|
|
93
31
|
private onReject;
|
|
94
32
|
}
|
|
@@ -1,51 +1,27 @@
|
|
|
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<{}>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<{}>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class TranslateByVector extends Operation {
|
|
6
|
-
private
|
|
7
|
-
private
|
|
6
|
+
private targetEntityButton;
|
|
7
|
+
private vectorEntityButton;
|
|
8
8
|
private readonly onPreviewHandler;
|
|
9
9
|
private readonly onAcceptHandler;
|
|
10
10
|
private readonly onRejectHandler;
|
|
11
11
|
private readonly buttonsContainer;
|
|
12
|
-
private
|
|
13
|
-
private
|
|
14
|
-
private
|
|
15
|
-
private entity_2;
|
|
12
|
+
private affectedElementUIDs;
|
|
13
|
+
private dynamicComponents;
|
|
14
|
+
private selectionData;
|
|
16
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
private setActiveButton_2;
|
|
21
|
-
/**
|
|
22
|
-
* Add entity button
|
|
23
|
-
*/
|
|
24
|
-
private addEntityButton_1;
|
|
25
|
-
private addEntityButton_2;
|
|
26
|
-
/**
|
|
27
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
28
|
-
*/
|
|
16
|
+
private setEnabledEntity;
|
|
17
|
+
private setActiveButton;
|
|
18
|
+
private buttons;
|
|
29
19
|
private addActionButtons;
|
|
30
|
-
/**
|
|
31
|
-
* Create dropdown list for entityButton_1
|
|
32
|
-
*/
|
|
33
|
-
private createDropdownListItems_1;
|
|
34
|
-
/**
|
|
35
|
-
* Create dropdown list for entityButton_2
|
|
36
|
-
*/
|
|
37
|
-
private createDropdownListItems_2;
|
|
38
|
-
/**
|
|
39
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
40
|
-
*/
|
|
41
|
-
private onAccept;
|
|
42
|
-
/**
|
|
43
|
-
* Initializes uiComponents on opening the operationUI
|
|
44
|
-
*/
|
|
45
20
|
init(): void;
|
|
46
|
-
|
|
47
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
48
|
-
*/
|
|
21
|
+
unselect(): void;
|
|
49
22
|
reset(): void;
|
|
23
|
+
private onPreview;
|
|
24
|
+
private onAccept;
|
|
25
|
+
private onReject;
|
|
50
26
|
}
|
|
51
27
|
export {};
|