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,12 +1,7 @@
|
|
|
1
1
|
import { ModelData } from "../../../../Viewer3D/DataStorage/ModelData/Index";
|
|
2
2
|
export declare class Translate {
|
|
3
|
-
id:
|
|
3
|
+
id: string;
|
|
4
4
|
itemName: string;
|
|
5
|
-
Modes: {
|
|
6
|
-
DxDyDz: number;
|
|
7
|
-
Nodes: number;
|
|
8
|
-
Vector: number;
|
|
9
|
-
};
|
|
10
5
|
entity1UIDs: number[];
|
|
11
6
|
entity2UIDs: number[];
|
|
12
7
|
entity3UIDs: number[];
|
|
@@ -20,6 +15,8 @@ export declare class Translate {
|
|
|
20
15
|
dz: number;
|
|
21
16
|
entity1Type: ModelData.dataTypes;
|
|
22
17
|
isPreview: boolean;
|
|
18
|
+
createCopy: boolean;
|
|
19
|
+
parentItemUID: number;
|
|
23
20
|
constructor(data: {});
|
|
24
21
|
perform(): Promise<import("../../../Network/BackendClient").ApiOperationResponse>;
|
|
25
22
|
}
|
|
@@ -98,7 +98,24 @@ declare const Operations: {
|
|
|
98
98
|
TemporarySplitFace: typeof import("./CAD/EditingTools/OpSplitFace").TemporarySplitFace;
|
|
99
99
|
};
|
|
100
100
|
CADCreationToolsOperations: {
|
|
101
|
+
PrimitivesDisc: typeof import("./CAD/CreationTools/OpPrimitivesDisc").PrimitivesDisc;
|
|
102
|
+
TemporaryPrimitivesDisc: typeof import("./CAD/CreationTools/OpPrimitivesDisc").TemporaryPrimitivesDisc;
|
|
103
|
+
PrimitivesTorus: typeof import("./CAD/CreationTools/OpPrimitivesTorus").PrimitivesTorus;
|
|
104
|
+
TemporaryPrimitivesTorus: typeof import("./CAD/CreationTools/OpPrimitivesTorus").TemporaryPrimitivesTorus;
|
|
105
|
+
PrimitivesSphere: typeof import("./CAD/CreationTools/OpPrimitivesSphere").PrimitivesSphere;
|
|
106
|
+
TemporaryPrimitivesSphere: typeof import("./CAD/CreationTools/OpPrimitivesSphere").TemporaryPrimitivesSphere;
|
|
107
|
+
PrimitivesCone: typeof import("./CAD/CreationTools/OpPrimitivesCone").PrimitivesCone;
|
|
108
|
+
TemporaryPrimitivesCone: typeof import("./CAD/CreationTools/OpPrimitivesCone").TemporaryPrimitivesCone;
|
|
109
|
+
PrimitivesCylinder: typeof import("./CAD/CreationTools/OpPrimitivesCylinder").PrimitivesCylinder;
|
|
110
|
+
TemporaryPrimitivesCylinder: typeof import("./CAD/CreationTools/OpPrimitivesCylinder").TemporaryPrimitivesCylinder;
|
|
111
|
+
PrimitivesRectangle: typeof import("./CAD/CreationTools/OpPrimitivesRectangle").PrimitivesRectangle;
|
|
112
|
+
TemporaryPrimitivesRectangle: typeof import("./CAD/CreationTools/OpPrimitivesRectangle").TemporaryPrimitivesRectangle;
|
|
113
|
+
PrimitivesBox: typeof import("./CAD/CreationTools/OpPrimitivesBox").PrimitivesBox;
|
|
114
|
+
TemporaryPrimitivesBox: typeof import("./CAD/CreationTools/OpPrimitivesBox").TemporaryPrimitivesBox;
|
|
101
115
|
ExtractShapes: typeof import("./CAD/CreationTools/OpExtractAndBuild").ExtractShapes;
|
|
116
|
+
BuildWire: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildWire;
|
|
117
|
+
BuildShell: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildShell;
|
|
118
|
+
BuildSolid: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildSolid;
|
|
102
119
|
FaceByOffset: typeof import("./CAD/CreationTools/OpFaceByOffset").FaceByOffset;
|
|
103
120
|
TemporaryFaceByOffset: typeof import("./CAD/CreationTools/OpFaceByOffset").TemporaryFaceByOffset;
|
|
104
121
|
FaceByFilling: typeof import("./CAD/CreationTools/OpFaceByFilling").FaceByFilling;
|
|
@@ -107,12 +124,42 @@ declare const Operations: {
|
|
|
107
124
|
TemporaryFaceByExtrusion: typeof import("./CAD/CreationTools/OpFaceByExtrusion").TemporaryFaceByExtrusion;
|
|
108
125
|
FaceByExtension: typeof import("./CAD/CreationTools/OpFaceByExtension").FaceByExtension;
|
|
109
126
|
TemporaryFaceByExtension: typeof import("./CAD/CreationTools/OpFaceByExtension").TemporaryFaceByExtension;
|
|
127
|
+
SolidByBoundary: typeof import("./CAD/CreationTools/OpSolidByBoundary").SolidByBoundary;
|
|
128
|
+
TemporarySolidByBoundary: typeof import("./CAD/CreationTools/OpSolidByBoundary").TemporarySolidByBoundary;
|
|
129
|
+
SolidByLoft: typeof import("./CAD/CreationTools/OpSolidByLoft").SolidByLoft;
|
|
130
|
+
TemporarySolidByLoft: typeof import("./CAD/CreationTools/OpSolidByLoft").TemporarySolidByLoft;
|
|
131
|
+
SolidBySweep: typeof import("./CAD/CreationTools/OpSolidBySweep").SolidBySweep;
|
|
132
|
+
TemporarySolidBySweep: typeof import("./CAD/CreationTools/OpSolidBySweep").TemporarySolidBySweep;
|
|
133
|
+
SolidByRevolute: typeof import("./CAD/CreationTools/OpSolidByRevolute").SolidByRevolute;
|
|
134
|
+
TemporarySolidByRevolute: typeof import("./CAD/CreationTools/OpSolidByRevolute").TemporarySolidByRevolute;
|
|
135
|
+
SolidByExtrusion: typeof import("./CAD/CreationTools/OpSolidByExtrusion").SolidByExtrusion;
|
|
136
|
+
TemporarySolidByExtrusion: typeof import("./CAD/CreationTools/OpSolidByExtrusion").TemporarySolidByExtrusion;
|
|
137
|
+
FaceByRevolute: typeof import("./CAD/CreationTools/OpFaceByRevolute").FaceByRevolute;
|
|
138
|
+
TemporaryFaceByRevolute: typeof import("./CAD/CreationTools/OpFaceByRevolute").TemporaryFaceByRevolute;
|
|
110
139
|
FaceByEdges: typeof import("./CAD/CreationTools/OpFaceByEdges").FaceByEdges;
|
|
111
140
|
TemporaryFaceByEdges: typeof import("./CAD/CreationTools/OpFaceByEdges").TemporaryFaceByEdges;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
141
|
+
CurveAtIntersection: typeof import("./CAD/CreationTools/OpCurveAtIntersection").CurveAtIntersection;
|
|
142
|
+
TemporaryCurveAtIntersection: typeof import("./CAD/CreationTools/OpCurveAtIntersection").TemporaryCurveAtIntersection;
|
|
143
|
+
CurveCircleCenterVector: typeof import("./CAD/CreationTools/OpCurveCircleCenterVector").CurveCircleCenterVector;
|
|
144
|
+
TemporaryCurveCircleCenterVector: typeof import("./CAD/CreationTools/OpCurveCircleCenterVector").TemporaryCurveCircleCenterVector;
|
|
145
|
+
CurveCircleThreeVertices: typeof import("./CAD/CreationTools/OpCurveCircleThreeVertices").CurveCircleThreeVertices;
|
|
146
|
+
TemporaryCurveCircleThreeVertices: typeof import("./CAD/CreationTools/OpCurveCircleThreeVertices").TemporaryCurveCircleThreeVertices;
|
|
147
|
+
CurveArcRadiusTwoVertices: typeof import("./CAD/CreationTools/OpCurveArcRadiusTwoVertices").CurveArcRadiusTwoVertices;
|
|
148
|
+
TemporaryCurveArcRadiusTwoVertices: typeof import("./CAD/CreationTools/OpCurveArcRadiusTwoVertices").TemporaryCurveArcRadiusTwoVertices;
|
|
149
|
+
CurveArcThreeVertices: typeof import("./CAD/CreationTools/OpCurveArcThreeVertices").CurveArcThreeVertices;
|
|
150
|
+
TemporaryCurveArcThreeVertices: typeof import("./CAD/CreationTools/OpCurveArcThreeVertices").TemporaryCurveArcThreeVertices;
|
|
151
|
+
CurveByPoints: typeof import("./CAD/CreationTools/OpCurveByPoints").CurveByPoints;
|
|
152
|
+
TemporaryCurveByPoints: typeof import("./CAD/CreationTools/OpCurveByPoints").TemporaryCurveByPoints;
|
|
153
|
+
CurveByXYZ: typeof import("./CAD/CreationTools/OpCurveByXYZ").CurveByXYZ;
|
|
154
|
+
TemporaryCurveByXYZ: typeof import("./CAD/CreationTools/OpCurveByXYZ").TemporaryCurveByXYZ;
|
|
155
|
+
PointAtIntersection: typeof import("./CAD/CreationTools/OpPointAtIntersection").PointAtIntersection;
|
|
156
|
+
TemporaryPointAtIntersection: typeof import("./CAD/CreationTools/OpPointAtIntersection").TemporaryPointAtIntersection;
|
|
157
|
+
PointAtCenter: typeof import("./CAD/CreationTools/OpPointAtCenter").PointAtCenter;
|
|
158
|
+
TemporaryPointAtCenter: typeof import("./CAD/CreationTools/OpPointAtCenter").TemporaryPointAtCenter;
|
|
159
|
+
PointAtCOG: typeof import("./CAD/CreationTools/OpPointAtCOG").PointAtCOG;
|
|
160
|
+
TemporaryPointAtCOG: typeof import("./CAD/CreationTools/OpPointAtCOG").TemporaryPointAtCOG;
|
|
161
|
+
PointByParameters: typeof import("./CAD/CreationTools/OpPointByParameters").PointByParameters;
|
|
162
|
+
TemporaryPointByParameters: typeof import("./CAD/CreationTools/OpPointByParameters").TemporaryPointByParameters;
|
|
116
163
|
PointByInterpolation: typeof import("./CAD/CreationTools/OpPointByInterpolation").PointByInterpolation;
|
|
117
164
|
TemporaryPointByInterpolation: typeof import("./CAD/CreationTools/OpPointByInterpolation").TemporaryPointByInterpolation;
|
|
118
165
|
PointOnVertex: typeof import("./CAD/CreationTools/OpPointOnVertex").PointOnVertex;
|
|
@@ -56,20 +56,55 @@ export declare enum OperationToId {
|
|
|
56
56
|
CAD_CreationTools_CreatePointOnVertex = 2001,
|
|
57
57
|
CAD_CreationTools_CreatePointByInterpolationBtw2VerticesOrPoints = 2002,
|
|
58
58
|
CAD_CreationTools_CreatePointByInterpolationOnEdgeOrLine = 2003,
|
|
59
|
+
CAD_CreationTools_CreatePointByParametersOnEdge = 2004,
|
|
60
|
+
CAD_CreationTools_CreatePointByParametersOnFace = 2005,
|
|
61
|
+
CAD_CreationTools_CreatePointAtCOG = 2006,
|
|
62
|
+
CAD_CreationTools_CreatePointAtIntersection = 2007,
|
|
63
|
+
CAD_CreationTools_CreatePointAtCenter = 2008,
|
|
59
64
|
CAD_CreationTools_CreateEdgeByXYZ = 2010,
|
|
60
65
|
CAD_CreationTools_CreateEdgeByPoints = 2011,
|
|
66
|
+
CAD_CreationTools_CreateArcByThreePoints = 2012,
|
|
67
|
+
CAD_CreationTools_CreateCircleByThreePoints = 2013,
|
|
68
|
+
CAD_CreationTools_CreateArcByRadiusAndTwoPoints = 2014,
|
|
69
|
+
CAD_CreationTools_CreateCircleByCenterVectorAndRadius = 2015,
|
|
70
|
+
CAD_CreationTools_CreateCurveAtIntersection = 2016,
|
|
71
|
+
/**
|
|
72
|
+
* CAD - Creation Tools - Primitives - 20xx
|
|
73
|
+
*/
|
|
74
|
+
/**
|
|
75
|
+
* CAD - Creation Tools - Solids - 20xx
|
|
76
|
+
*/
|
|
77
|
+
CAD_CreationTools_CreateSolidByExtrusion = 2040,
|
|
78
|
+
CAD_CreationTools_CreateSolidByRevolute = 2041,
|
|
79
|
+
CAD_CreationTools_CreateSolidBySweep = 2042,
|
|
80
|
+
CAD_CreationTools_CreateSolidByLoft = 2043,
|
|
81
|
+
CAD_CreationTools_CreateSolidByBoundary = 2044,
|
|
82
|
+
/**
|
|
83
|
+
* CAD - Creation Tools - Primitives - 20xx
|
|
84
|
+
*/
|
|
85
|
+
CAD_CreationTools_CreatePrimitiveBox = 2030,
|
|
86
|
+
CAD_CreationTools_CreatePrimitiveRectangle = 2031,
|
|
87
|
+
CAD_CreationTools_CreatePrimitiveCylinder = 2032,
|
|
88
|
+
CAD_CreationTools_CreatePrimitiveCone = 2033,
|
|
89
|
+
CAD_CreationTools_CreatePrimitiveSphere = 2034,
|
|
90
|
+
CAD_CreationTools_CreatePrimitiveTorus = 2035,
|
|
91
|
+
CAD_CreationTools_CreatePrimitiveDisc = 2036,
|
|
61
92
|
CAD_CreationTools_CreateFaceByEdges = 2020,
|
|
62
93
|
CAD_CreationTools_CreateFaceByOffset = 2021,
|
|
63
94
|
CAD_CreationTools_CreateFaceByExtrusionAlongVector = 2022,
|
|
64
95
|
CAD_CreationTools_CreateFaceByExtrusionUpToSurface = 2023,
|
|
65
96
|
CAD_CreationTools_CreateFaceByExtension = 2024,
|
|
66
97
|
CAD_CreationTools_CreateFaceByFilling = 2025,
|
|
98
|
+
CAD_CreationTools_CreateFaceByRevolute = 2026,
|
|
67
99
|
CAD_CreationTools_ExtractAndBuild_ExtractVertices = 2050,
|
|
68
100
|
CAD_CreationTools_ExtractAndBuild_ExtractEdges = 2051,
|
|
69
101
|
CAD_CreationTools_ExtractAndBuild_ExtractWires = 2052,
|
|
70
102
|
CAD_CreationTools_ExtractAndBuild_ExtractFaces = 2053,
|
|
71
103
|
CAD_CreationTools_ExtractAndBuild_ExtractShells = 2054,
|
|
72
104
|
CAD_CreationTools_ExtractAndBuild_ExtractSolids = 2055,
|
|
105
|
+
CAD_CreationTools_ExtractAndBuild_BuildWire = 2056,
|
|
106
|
+
CAD_CreationTools_ExtractAndBuild_BuildShell = 2057,
|
|
107
|
+
CAD_CreationTools_ExtractAndBuild_BuildSolid = 2058,
|
|
73
108
|
/**
|
|
74
109
|
* CAD - Transformation Tools - 21xx
|
|
75
110
|
*/
|
|
@@ -10,7 +10,6 @@ export declare class CSystemByPoints extends Operation {
|
|
|
10
10
|
private readonly onAcceptHandler;
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
|
-
private readonly availableEntities;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
16
15
|
private setEnabledEntity;
|
|
@@ -19,10 +18,6 @@ export declare class CSystemByPoints extends Operation {
|
|
|
19
18
|
* Add entity button
|
|
20
19
|
*/
|
|
21
20
|
private addEntityButton;
|
|
22
|
-
/**
|
|
23
|
-
* Create dropdown list for entityButton
|
|
24
|
-
*/
|
|
25
|
-
private createDropdownListItems;
|
|
26
21
|
private addFields;
|
|
27
22
|
/**
|
|
28
23
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
@@ -10,7 +10,6 @@ export declare class VectorByPoints extends Operation {
|
|
|
10
10
|
private readonly onAcceptHandler;
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
|
-
private readonly availableEntities;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
16
15
|
private setEnabledEntity;
|
|
@@ -19,10 +18,6 @@ export declare class VectorByPoints extends Operation {
|
|
|
19
18
|
* Add entity button
|
|
20
19
|
*/
|
|
21
20
|
private addEntityButton;
|
|
22
|
-
/**
|
|
23
|
-
* Create dropdown list for entityButton
|
|
24
|
-
*/
|
|
25
|
-
private createDropdownListItems;
|
|
26
21
|
/**
|
|
27
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
28
23
|
*/
|
|
@@ -0,0 +1,35 @@
|
|
|
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 CurveArcRadiusTwoVertices extends Operation {
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
8
|
+
private entityDropDownMenu_3;
|
|
9
|
+
private radiusInput;
|
|
10
|
+
private flipInput;
|
|
11
|
+
private pickShorterArcInput;
|
|
12
|
+
private readonly onPreviewHandler;
|
|
13
|
+
private readonly onAcceptHandler;
|
|
14
|
+
private readonly onRejectHandler;
|
|
15
|
+
private readonly buttonsContainer;
|
|
16
|
+
private readonly inputsContainer;
|
|
17
|
+
private radius;
|
|
18
|
+
private flip;
|
|
19
|
+
private pickShorterArc;
|
|
20
|
+
private selectionData;
|
|
21
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
22
|
+
private setEnabledEntity;
|
|
23
|
+
private setActiveButton;
|
|
24
|
+
private addEntityButtons;
|
|
25
|
+
private addFields;
|
|
26
|
+
private addActionButtons;
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
29
|
+
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
|
+
init(): void;
|
|
33
|
+
reset(): void;
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
5
|
-
export declare class
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class CurveArcThreeVertices 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
|
|
12
|
-
private entity;
|
|
11
|
+
private selectionData;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
15
14
|
private setActiveButton;
|
|
@@ -22,19 +21,20 @@ export declare class LineArcThreeVertices extends Operation {
|
|
|
22
21
|
*/
|
|
23
22
|
private addActionButtons;
|
|
24
23
|
/**
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
private createDropdownListItems;
|
|
28
|
-
/**
|
|
29
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
24
|
+
* Builds the input object from current UI state.
|
|
25
|
+
* Requires exactly 3 entities selected (start, pass-through, end).
|
|
30
26
|
*/
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
31
29
|
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
32
|
/**
|
|
33
33
|
* Initializes uiComponents on opening the operationUI
|
|
34
34
|
*/
|
|
35
35
|
init(): void;
|
|
36
36
|
/**
|
|
37
|
-
* Resets the gui elements
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
38
38
|
*/
|
|
39
39
|
reset(): void;
|
|
40
40
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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 CurveAtIntersection 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, onRejectHandler?: OnRejectHandler);
|
|
14
|
+
private setEnabledEntity;
|
|
15
|
+
private setActiveButton;
|
|
16
|
+
private addEntityButtons;
|
|
17
|
+
private addActionButtons;
|
|
18
|
+
private buildInput;
|
|
19
|
+
private onPreview;
|
|
20
|
+
private onAccept;
|
|
21
|
+
private onReject;
|
|
22
|
+
unselect(): void;
|
|
23
|
+
init(): void;
|
|
24
|
+
reset(): void;
|
|
25
|
+
}
|
|
26
|
+
export {};
|
|
@@ -2,13 +2,12 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
3
|
type OnAcceptHandler = (data: {}) => void;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveByInterpolation 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 availableEntities;
|
|
12
11
|
private entity;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
@@ -21,10 +20,6 @@ export declare class LineAtIntersection 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
|
*/
|
|
@@ -2,13 +2,12 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
3
|
type OnAcceptHandler = (data: {}) => Promise<boolean>;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveByOffsetXYZ 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 readonly availableEntities;
|
|
12
11
|
private selectionData;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
@@ -17,10 +16,6 @@ export declare class LineByOffsetXYZ 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
|
*/
|
|
@@ -2,7 +2,7 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
3
|
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
4
|
type OnRejectHandler = () => Promise<void>;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveByPoints extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private isClosedWire;
|
|
8
8
|
private isClosed;
|
|
@@ -10,7 +10,6 @@ export declare class LineByPoints extends Operation {
|
|
|
10
10
|
private readonly onAcceptHandler;
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
|
-
private readonly availableEntities;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
16
15
|
private setEnabledEntity;
|
|
@@ -19,10 +18,6 @@ export declare class LineByPoints extends Operation {
|
|
|
19
18
|
* Add entity button
|
|
20
19
|
*/
|
|
21
20
|
private addEntityButton;
|
|
22
|
-
/**
|
|
23
|
-
* Create dropdown list for entityButton
|
|
24
|
-
*/
|
|
25
|
-
private createDropdownListItems;
|
|
26
21
|
private addCheckmarks;
|
|
27
22
|
/**
|
|
28
23
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
@@ -2,7 +2,7 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
3
|
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
4
|
type OnRejectHandler = () => Promise<void>;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveByXYZ extends Operation {
|
|
6
6
|
private readonly onPreviewHandler;
|
|
7
7
|
private readonly onAcceptHandler;
|
|
8
8
|
private readonly onRejectHandler;
|
|
@@ -2,7 +2,7 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
3
|
type OnAcceptHandler = (data: {}) => void;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveChamfer extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private sizeInput;
|
|
8
8
|
private angleInput;
|
|
@@ -11,7 +11,6 @@ export declare class LineChamfer extends Operation {
|
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
13
|
private readonly inputsContainer;
|
|
14
|
-
private availableEntities;
|
|
15
14
|
private entity;
|
|
16
15
|
private angle;
|
|
17
16
|
private size;
|
|
@@ -27,10 +26,6 @@ export declare class LineChamfer extends Operation {
|
|
|
27
26
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
28
27
|
*/
|
|
29
28
|
private addActionButtons;
|
|
30
|
-
/**
|
|
31
|
-
* Create dropdown list for entityButton
|
|
32
|
-
*/
|
|
33
|
-
private createDropdownListItems;
|
|
34
29
|
/**
|
|
35
30
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
36
31
|
*/
|
|
@@ -0,0 +1,30 @@
|
|
|
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 CurveCircleCenterVector extends Operation {
|
|
6
|
+
private entityDropDownMenu_1;
|
|
7
|
+
private entityDropDownMenu_2;
|
|
8
|
+
private radiusInput;
|
|
9
|
+
private readonly onPreviewHandler;
|
|
10
|
+
private readonly onAcceptHandler;
|
|
11
|
+
private readonly onRejectHandler;
|
|
12
|
+
private readonly buttonsContainer;
|
|
13
|
+
private readonly inputsContainer;
|
|
14
|
+
private radius;
|
|
15
|
+
private selectionData;
|
|
16
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
17
|
+
private setEnabledEntity;
|
|
18
|
+
private setActiveButton;
|
|
19
|
+
private addEntityButtons;
|
|
20
|
+
private addFields;
|
|
21
|
+
private addActionButtons;
|
|
22
|
+
private buildInput;
|
|
23
|
+
private onPreview;
|
|
24
|
+
private onAccept;
|
|
25
|
+
private onReject;
|
|
26
|
+
unselect(): void;
|
|
27
|
+
init(): void;
|
|
28
|
+
reset(): void;
|
|
29
|
+
}
|
|
30
|
+
export {};
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
5
|
-
export declare class
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class CurveCircleThreeVertices 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
|
|
12
|
-
private entity;
|
|
11
|
+
private selectionData;
|
|
13
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
14
13
|
private setEnabledEntity;
|
|
15
14
|
private setActiveButton;
|
|
@@ -22,19 +21,20 @@ export declare class LineByInterpolation extends Operation {
|
|
|
22
21
|
*/
|
|
23
22
|
private addActionButtons;
|
|
24
23
|
/**
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
private createDropdownListItems;
|
|
28
|
-
/**
|
|
29
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
24
|
+
* Builds the input object from current UI state.
|
|
25
|
+
* Requires exactly 3 entities selected.
|
|
30
26
|
*/
|
|
27
|
+
private buildInput;
|
|
28
|
+
private onPreview;
|
|
31
29
|
private onAccept;
|
|
30
|
+
private onReject;
|
|
31
|
+
unselect(): void;
|
|
32
32
|
/**
|
|
33
33
|
* Initializes uiComponents on opening the operationUI
|
|
34
34
|
*/
|
|
35
35
|
init(): void;
|
|
36
36
|
/**
|
|
37
|
-
* Resets the gui elements
|
|
37
|
+
* Resets the gui elements to default on closing the operationUI
|
|
38
38
|
*/
|
|
39
39
|
reset(): void;
|
|
40
40
|
}
|
|
@@ -2,7 +2,7 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
3
|
type OnAcceptHandler = (data: {}) => void;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveFillet extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private radiusInput;
|
|
8
8
|
private readonly onPreviewHandler;
|
|
@@ -10,7 +10,6 @@ export declare class LineFillet extends Operation {
|
|
|
10
10
|
private readonly onRejectHandler;
|
|
11
11
|
private readonly buttonsContainer;
|
|
12
12
|
private readonly inputsContainer;
|
|
13
|
-
private availableEntities;
|
|
14
13
|
private entity;
|
|
15
14
|
private radius;
|
|
16
15
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -25,10 +24,6 @@ export declare class LineFillet extends Operation {
|
|
|
25
24
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
26
25
|
*/
|
|
27
26
|
private addActionButtons;
|
|
28
|
-
/**
|
|
29
|
-
* Create dropdown list for entityButton
|
|
30
|
-
*/
|
|
31
|
-
private createDropdownListItems;
|
|
32
27
|
/**
|
|
33
28
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
34
29
|
*/
|
|
@@ -2,7 +2,7 @@ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComp
|
|
|
2
2
|
type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
3
3
|
type OnAcceptHandler = (data: {}) => void;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class CurveTangentToLines extends Operation {
|
|
6
6
|
private entityDropDownMenu_1;
|
|
7
7
|
private entityDropDownMenu_2;
|
|
8
8
|
private readonly onPreviewHandler;
|
|
@@ -10,8 +10,6 @@ export declare class LineTangentToLines 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,14 +26,6 @@ export declare class LineTangentToLines extends Operation {
|
|
|
28
26
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
29
27
|
*/
|
|
30
28
|
private addActionButtons;
|
|
31
|
-
/**
|
|
32
|
-
* Create dropdown list for entityButton_1
|
|
33
|
-
*/
|
|
34
|
-
private createDropdownListItems_1;
|
|
35
|
-
/**
|
|
36
|
-
* Create dropdown list for entityButton_1
|
|
37
|
-
*/
|
|
38
|
-
private createDropdownListItems_2;
|
|
39
29
|
/**
|
|
40
30
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
41
31
|
*/
|
|
@@ -9,8 +9,8 @@ export declare class ExtractBuildBuildShell extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
13
|
+
private selectionData;
|
|
14
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
15
|
private setEnabledEntity;
|
|
16
16
|
private setActiveButton;
|
|
@@ -22,10 +22,6 @@ export declare class ExtractBuildBuildShell extends Operation {
|
|
|
22
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
23
|
*/
|
|
24
24
|
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
25
|
/**
|
|
30
26
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
27
|
*/
|
|
@@ -3,29 +3,24 @@ type OnPreviewHandler = (entityUIDs: number[]) => void;
|
|
|
3
3
|
type OnAcceptHandler = (data: {}) => void;
|
|
4
4
|
type OnRejectHandler = (entityUIDs: number[]) => void;
|
|
5
5
|
export declare class ExtractBuildBuildSolid extends Operation {
|
|
6
|
-
private
|
|
6
|
+
private shellEntityDropDownMenu;
|
|
7
|
+
private faceEntityDropDownMenu;
|
|
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
14
|
private setEnabledEntity;
|
|
16
15
|
private setActiveButton;
|
|
17
16
|
/**
|
|
18
17
|
* Add entity button
|
|
19
18
|
*/
|
|
20
|
-
private
|
|
19
|
+
private addEntityButtons;
|
|
21
20
|
/**
|
|
22
21
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
22
|
*/
|
|
24
23
|
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
24
|
/**
|
|
30
25
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
26
|
*/
|
|
@@ -9,8 +9,8 @@ export declare class ExtractBuildBuildWire extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
13
|
+
private selectionData;
|
|
14
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
15
|
private setEnabledEntity;
|
|
16
16
|
private setActiveButton;
|
|
@@ -22,10 +22,6 @@ export declare class ExtractBuildBuildWire extends Operation {
|
|
|
22
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
23
23
|
*/
|
|
24
24
|
private addActionButtons;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
25
|
/**
|
|
30
26
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
31
27
|
*/
|