fcs-core-viewer 0.50.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +3 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/Index.d.ts +75 -6
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcRadiusTwoVertices.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByPoints.d.ts → OpCurveByPoints.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByXYZ.d.ts → OpCurveByXYZ.d.ts} +2 -2
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleCenterVector.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleThreeVertices.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpExtractAndBuild.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpFaceByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCOG.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCenter.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtIntersection.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByInterpolation.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByParameters.d.ts +18 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByXYZ.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointOnVertex.d.ts +1 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesBox.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCone.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCylinder.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesDisc.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesRectangle.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesSphere.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesTorus.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByBoundary.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByExtrusion.d.ts +16 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByLoft.d.ts +13 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByRevolute.d.ts +15 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidBySweep.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/Index.d.ts +57 -4
- package/fcs-core-editor@types/Editor3D/Operations/CAD/InspectionTools/OpMeasureDistance.d.ts +2 -1
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/Index.d.ts +9 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByFace.d.ts +19 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByLine.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByPoint.d.ts +14 -0
- package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpTranslate.d.ts +3 -6
- package/fcs-core-editor@types/Editor3D/Operations/Common/Exchange/Simulation.d.ts +3 -0
- package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +57 -4
- package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +38 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/CSystem/UICSystemByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/Vector/UIVectorByPoints.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveArcRadiusTwoVertices.d.ts +35 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineArcThreeVertices.d.ts → Curve/UICurveArcThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveAtIntersection.d.ts +26 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineAtIntersection.d.ts → Curve/UICurveByInterpolation.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByOffsetXYZ.d.ts → Curve/UICurveByOffsetXYZ.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByPoints.d.ts → Curve/UICurveByPoints.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByXYZ.d.ts → Curve/UICurveByXYZ.d.ts} +1 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineChamfer.d.ts → Curve/UICurveChamfer.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveCircleCenterVector.d.ts +30 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByInterpolation.d.ts → Curve/UICurveCircleThreeVertices.d.ts} +12 -12
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineFillet.d.ts → Curve/UICurveFillet.d.ts} +1 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/{TransformationTools/Mirror/UIMirrorByVector.d.ts → CreationTools/Curve/UICurveTangentToLines.d.ts} +1 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildShell.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildSolid.d.ts +3 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildWire.d.ts +1 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractPoint.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractShell.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractSolid.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractWire.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByEdges.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtension.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtrusion.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByFilling.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByOffset.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByReconstruction.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByRevolute.d.ts +12 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweep.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweepbiNormal.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceMidsurface.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFacebyLoft.d.ts +0 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Index.d.ts +29 -45
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCOG.d.ts +40 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCenter.d.ts +9 -21
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtIntersection.d.ts +16 -15
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByInterpolation.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByParameters.d.ts +14 -11
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointOnVertex.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesBox.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCone.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCylinder.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesDisc.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesRectangle.d.ts +12 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesSphere.d.ts +8 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesTorus.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByBoundary.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByExtrusion.d.ts +15 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByLoft.d.ts +9 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByRevolute.d.ts +12 -28
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidBySweep.d.ts +10 -29
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/Delete/UIDeleteShape.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/UISplitFace.d.ts +0 -26
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIMeasureDistance.d.ts +1 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIPointCoordinates.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Index.d.ts +6 -6
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Location/UILocationByCoordinateTransformation.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByFace.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByLine.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPoint.d.ts +41 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnFace.d.ts +0 -16
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnLine.d.ts +0 -10
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Rotate/UIRotateByVectorAndAngle.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Scale/UIScaleByXYZ.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslate.d.ts +0 -62
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVector.d.ts +15 -39
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVectorAndLength.d.ts +16 -40
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIBeam.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIConcentratedLoad.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIContactPair.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UICustomMaterial.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDashpot.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicHarmonic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicImplicit.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UILinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMass.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMembrane.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIModal.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMotionConstraint.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UINonlinearStatic.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIOutputControl.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIShell.d.ts +11 -0
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISolid.d.ts +2 -2
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISpring.d.ts +0 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Advanced/UIMeshLine.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Basic/UIRigidCoupling.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UICreateNode.d.ts +0 -14
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +0 -8
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshFace.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshPatch.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIRemesh.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIBoundary2D.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIExtrude.d.ts +0 -9
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Manual/UICreateElement.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_3D/Advanced/UIMeshVolume.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByElements.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByNodes.d.ts +0 -7
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UICheckNormals.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UIFreeBorders.d.ts +0 -5
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/OptionsMenu/Operations/RunSimulation/RunSimulationOperation.d.ts +19 -1
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/Topbar/Operations/FindByIdOperation.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +6 -0
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Index.d.ts +5 -5
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/ModelData.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/{TopoLine.d.ts → TopoCurve.d.ts} +1 -1
- package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts} +3 -3
- package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/GeomLoader.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts +2 -2
- package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionHelpers.d.ts +25 -1
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +6 -0
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +20 -3
- package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts +2 -1
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +4 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/FindNodeElement.d.ts +22 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Index.d.ts +2 -0
- package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/Transparency.d.ts +1 -1
- package/fcs-core-editor@types/Viewer3D/ViewerEntities/VisibleEntities/Tooltip.d.ts +14 -0
- package/package.json +5 -3
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineArcCenterVector.d.ts +0 -54
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleCenterVector.d.ts +0 -55
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleThreeVertices.d.ts +0 -41
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineTangentToLines.d.ts +0 -52
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPlane.d.ts +0 -23
- package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByDXDYXZ.d.ts +0 -41
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import * as Translate from "./OpTranslate";
|
|
2
2
|
import * as ProjectOnLine from "./OpProjectOnLine";
|
|
3
3
|
import * as ProjectOnFace from "./OpProjectOnFace";
|
|
4
|
+
import * as MirrorByFace from "./OpMirrorByFace";
|
|
5
|
+
import * as MirrorByLine from "./OpMirrorByLine";
|
|
6
|
+
import * as MirrorByPoint from "./OpMirrorByPoint";
|
|
4
7
|
declare const CADTransformationTools: {
|
|
8
|
+
MirrorByPoint: typeof MirrorByPoint.MirrorByPoint;
|
|
9
|
+
TemporaryMirrorByPoint: typeof MirrorByPoint.TemporaryMirrorByPoint;
|
|
10
|
+
MirrorByLine: typeof MirrorByLine.MirrorByLine;
|
|
11
|
+
TemporaryMirrorByLine: typeof MirrorByLine.TemporaryMirrorByLine;
|
|
12
|
+
MirrorByFace: typeof MirrorByFace.MirrorByFace;
|
|
13
|
+
TemporaryMirrorByFace: typeof MirrorByFace.TemporaryMirrorByFace;
|
|
5
14
|
ProjectOnFace: typeof ProjectOnFace.ProjectOnFace;
|
|
6
15
|
TemporaryProjectOnFace: typeof ProjectOnFace.TemporaryProjectOnFace;
|
|
7
16
|
ProjectOnLine: typeof ProjectOnLine.ProjectOnLine;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ModelData } from '../../../../Viewer3D/DataStorage/ModelData/Index';
|
|
2
|
+
import { Container } from '../../../../Viewer3D/DataStorage/ModelData/Items/Containers/Container';
|
|
3
|
+
export declare class MirrorByFace {
|
|
4
|
+
itemName: string;
|
|
5
|
+
targetUIDs: number[];
|
|
6
|
+
toolUIDs: number[];
|
|
7
|
+
entity1Type: ModelData.dataTypes;
|
|
8
|
+
isPreview: boolean;
|
|
9
|
+
targetContainer: Container;
|
|
10
|
+
targetFileType: ModelData.dataTypes;
|
|
11
|
+
constructor(data: {});
|
|
12
|
+
perform(): Promise<boolean>;
|
|
13
|
+
}
|
|
14
|
+
export declare class TemporaryMirrorByFace {
|
|
15
|
+
private input;
|
|
16
|
+
constructor(input?: {});
|
|
17
|
+
preview(): Promise<void>;
|
|
18
|
+
reject(): Promise<void>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class MirrorByLine {
|
|
2
|
+
itemName: string;
|
|
3
|
+
targetUIDs: number[];
|
|
4
|
+
toolUIDs: number[];
|
|
5
|
+
isPreview: boolean;
|
|
6
|
+
constructor(input: {});
|
|
7
|
+
perform(): Promise<boolean>;
|
|
8
|
+
}
|
|
9
|
+
export declare class TemporaryMirrorByLine {
|
|
10
|
+
private input;
|
|
11
|
+
constructor(input?: {});
|
|
12
|
+
preview(): Promise<void>;
|
|
13
|
+
reject(): Promise<void>;
|
|
14
|
+
}
|
package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByPoint.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class MirrorByPoint {
|
|
2
|
+
itemName: string;
|
|
3
|
+
targetUIDs: number[];
|
|
4
|
+
toolUIDs: number[];
|
|
5
|
+
isPreview: boolean;
|
|
6
|
+
constructor(input: {});
|
|
7
|
+
perform(): Promise<boolean>;
|
|
8
|
+
}
|
|
9
|
+
export declare class TemporaryMirrorByPoint {
|
|
10
|
+
private input;
|
|
11
|
+
constructor(input?: {});
|
|
12
|
+
preview(): Promise<void>;
|
|
13
|
+
reject(): Promise<void>;
|
|
14
|
+
}
|
|
@@ -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
|
}
|
|
@@ -86,6 +86,12 @@ declare const Operations: {
|
|
|
86
86
|
};
|
|
87
87
|
CAD: {
|
|
88
88
|
CADTransformationTools: {
|
|
89
|
+
MirrorByPoint: typeof import("./CAD/TransformationTools/OpMirrorByPoint").MirrorByPoint;
|
|
90
|
+
TemporaryMirrorByPoint: typeof import("./CAD/TransformationTools/OpMirrorByPoint").TemporaryMirrorByPoint;
|
|
91
|
+
MirrorByLine: typeof import("./CAD/TransformationTools/OpMirrorByLine").MirrorByLine;
|
|
92
|
+
TemporaryMirrorByLine: typeof import("./CAD/TransformationTools/OpMirrorByLine").TemporaryMirrorByLine;
|
|
93
|
+
MirrorByFace: typeof import("./CAD/TransformationTools/OpMirrorByFace").MirrorByFace;
|
|
94
|
+
TemporaryMirrorByFace: typeof import("./CAD/TransformationTools/OpMirrorByFace").TemporaryMirrorByFace;
|
|
89
95
|
ProjectOnFace: typeof import("./CAD/TransformationTools/OpProjectOnFace").ProjectOnFace;
|
|
90
96
|
TemporaryProjectOnFace: typeof import("./CAD/TransformationTools/OpProjectOnFace").TemporaryProjectOnFace;
|
|
91
97
|
ProjectOnLine: typeof import("./CAD/TransformationTools/OpProjectOnLine").ProjectOnLine;
|
|
@@ -98,7 +104,24 @@ declare const Operations: {
|
|
|
98
104
|
TemporarySplitFace: typeof import("./CAD/EditingTools/OpSplitFace").TemporarySplitFace;
|
|
99
105
|
};
|
|
100
106
|
CADCreationToolsOperations: {
|
|
107
|
+
PrimitivesDisc: typeof import("./CAD/CreationTools/OpPrimitivesDisc").PrimitivesDisc;
|
|
108
|
+
TemporaryPrimitivesDisc: typeof import("./CAD/CreationTools/OpPrimitivesDisc").TemporaryPrimitivesDisc;
|
|
109
|
+
PrimitivesTorus: typeof import("./CAD/CreationTools/OpPrimitivesTorus").PrimitivesTorus;
|
|
110
|
+
TemporaryPrimitivesTorus: typeof import("./CAD/CreationTools/OpPrimitivesTorus").TemporaryPrimitivesTorus;
|
|
111
|
+
PrimitivesSphere: typeof import("./CAD/CreationTools/OpPrimitivesSphere").PrimitivesSphere;
|
|
112
|
+
TemporaryPrimitivesSphere: typeof import("./CAD/CreationTools/OpPrimitivesSphere").TemporaryPrimitivesSphere;
|
|
113
|
+
PrimitivesCone: typeof import("./CAD/CreationTools/OpPrimitivesCone").PrimitivesCone;
|
|
114
|
+
TemporaryPrimitivesCone: typeof import("./CAD/CreationTools/OpPrimitivesCone").TemporaryPrimitivesCone;
|
|
115
|
+
PrimitivesCylinder: typeof import("./CAD/CreationTools/OpPrimitivesCylinder").PrimitivesCylinder;
|
|
116
|
+
TemporaryPrimitivesCylinder: typeof import("./CAD/CreationTools/OpPrimitivesCylinder").TemporaryPrimitivesCylinder;
|
|
117
|
+
PrimitivesRectangle: typeof import("./CAD/CreationTools/OpPrimitivesRectangle").PrimitivesRectangle;
|
|
118
|
+
TemporaryPrimitivesRectangle: typeof import("./CAD/CreationTools/OpPrimitivesRectangle").TemporaryPrimitivesRectangle;
|
|
119
|
+
PrimitivesBox: typeof import("./CAD/CreationTools/OpPrimitivesBox").PrimitivesBox;
|
|
120
|
+
TemporaryPrimitivesBox: typeof import("./CAD/CreationTools/OpPrimitivesBox").TemporaryPrimitivesBox;
|
|
101
121
|
ExtractShapes: typeof import("./CAD/CreationTools/OpExtractAndBuild").ExtractShapes;
|
|
122
|
+
BuildWire: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildWire;
|
|
123
|
+
BuildShell: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildShell;
|
|
124
|
+
BuildSolid: typeof import("./CAD/CreationTools/OpExtractAndBuild").BuildSolid;
|
|
102
125
|
FaceByOffset: typeof import("./CAD/CreationTools/OpFaceByOffset").FaceByOffset;
|
|
103
126
|
TemporaryFaceByOffset: typeof import("./CAD/CreationTools/OpFaceByOffset").TemporaryFaceByOffset;
|
|
104
127
|
FaceByFilling: typeof import("./CAD/CreationTools/OpFaceByFilling").FaceByFilling;
|
|
@@ -107,12 +130,42 @@ declare const Operations: {
|
|
|
107
130
|
TemporaryFaceByExtrusion: typeof import("./CAD/CreationTools/OpFaceByExtrusion").TemporaryFaceByExtrusion;
|
|
108
131
|
FaceByExtension: typeof import("./CAD/CreationTools/OpFaceByExtension").FaceByExtension;
|
|
109
132
|
TemporaryFaceByExtension: typeof import("./CAD/CreationTools/OpFaceByExtension").TemporaryFaceByExtension;
|
|
133
|
+
SolidByBoundary: typeof import("./CAD/CreationTools/OpSolidByBoundary").SolidByBoundary;
|
|
134
|
+
TemporarySolidByBoundary: typeof import("./CAD/CreationTools/OpSolidByBoundary").TemporarySolidByBoundary;
|
|
135
|
+
SolidByLoft: typeof import("./CAD/CreationTools/OpSolidByLoft").SolidByLoft;
|
|
136
|
+
TemporarySolidByLoft: typeof import("./CAD/CreationTools/OpSolidByLoft").TemporarySolidByLoft;
|
|
137
|
+
SolidBySweep: typeof import("./CAD/CreationTools/OpSolidBySweep").SolidBySweep;
|
|
138
|
+
TemporarySolidBySweep: typeof import("./CAD/CreationTools/OpSolidBySweep").TemporarySolidBySweep;
|
|
139
|
+
SolidByRevolute: typeof import("./CAD/CreationTools/OpSolidByRevolute").SolidByRevolute;
|
|
140
|
+
TemporarySolidByRevolute: typeof import("./CAD/CreationTools/OpSolidByRevolute").TemporarySolidByRevolute;
|
|
141
|
+
SolidByExtrusion: typeof import("./CAD/CreationTools/OpSolidByExtrusion").SolidByExtrusion;
|
|
142
|
+
TemporarySolidByExtrusion: typeof import("./CAD/CreationTools/OpSolidByExtrusion").TemporarySolidByExtrusion;
|
|
143
|
+
FaceByRevolute: typeof import("./CAD/CreationTools/OpFaceByRevolute").FaceByRevolute;
|
|
144
|
+
TemporaryFaceByRevolute: typeof import("./CAD/CreationTools/OpFaceByRevolute").TemporaryFaceByRevolute;
|
|
110
145
|
FaceByEdges: typeof import("./CAD/CreationTools/OpFaceByEdges").FaceByEdges;
|
|
111
146
|
TemporaryFaceByEdges: typeof import("./CAD/CreationTools/OpFaceByEdges").TemporaryFaceByEdges;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
147
|
+
CurveAtIntersection: typeof import("./CAD/CreationTools/OpCurveAtIntersection").CurveAtIntersection;
|
|
148
|
+
TemporaryCurveAtIntersection: typeof import("./CAD/CreationTools/OpCurveAtIntersection").TemporaryCurveAtIntersection;
|
|
149
|
+
CurveCircleCenterVector: typeof import("./CAD/CreationTools/OpCurveCircleCenterVector").CurveCircleCenterVector;
|
|
150
|
+
TemporaryCurveCircleCenterVector: typeof import("./CAD/CreationTools/OpCurveCircleCenterVector").TemporaryCurveCircleCenterVector;
|
|
151
|
+
CurveCircleThreeVertices: typeof import("./CAD/CreationTools/OpCurveCircleThreeVertices").CurveCircleThreeVertices;
|
|
152
|
+
TemporaryCurveCircleThreeVertices: typeof import("./CAD/CreationTools/OpCurveCircleThreeVertices").TemporaryCurveCircleThreeVertices;
|
|
153
|
+
CurveArcRadiusTwoVertices: typeof import("./CAD/CreationTools/OpCurveArcRadiusTwoVertices").CurveArcRadiusTwoVertices;
|
|
154
|
+
TemporaryCurveArcRadiusTwoVertices: typeof import("./CAD/CreationTools/OpCurveArcRadiusTwoVertices").TemporaryCurveArcRadiusTwoVertices;
|
|
155
|
+
CurveArcThreeVertices: typeof import("./CAD/CreationTools/OpCurveArcThreeVertices").CurveArcThreeVertices;
|
|
156
|
+
TemporaryCurveArcThreeVertices: typeof import("./CAD/CreationTools/OpCurveArcThreeVertices").TemporaryCurveArcThreeVertices;
|
|
157
|
+
CurveByPoints: typeof import("./CAD/CreationTools/OpCurveByPoints").CurveByPoints;
|
|
158
|
+
TemporaryCurveByPoints: typeof import("./CAD/CreationTools/OpCurveByPoints").TemporaryCurveByPoints;
|
|
159
|
+
CurveByXYZ: typeof import("./CAD/CreationTools/OpCurveByXYZ").CurveByXYZ;
|
|
160
|
+
TemporaryCurveByXYZ: typeof import("./CAD/CreationTools/OpCurveByXYZ").TemporaryCurveByXYZ;
|
|
161
|
+
PointAtIntersection: typeof import("./CAD/CreationTools/OpPointAtIntersection").PointAtIntersection;
|
|
162
|
+
TemporaryPointAtIntersection: typeof import("./CAD/CreationTools/OpPointAtIntersection").TemporaryPointAtIntersection;
|
|
163
|
+
PointAtCenter: typeof import("./CAD/CreationTools/OpPointAtCenter").PointAtCenter;
|
|
164
|
+
TemporaryPointAtCenter: typeof import("./CAD/CreationTools/OpPointAtCenter").TemporaryPointAtCenter;
|
|
165
|
+
PointAtCOG: typeof import("./CAD/CreationTools/OpPointAtCOG").PointAtCOG;
|
|
166
|
+
TemporaryPointAtCOG: typeof import("./CAD/CreationTools/OpPointAtCOG").TemporaryPointAtCOG;
|
|
167
|
+
PointByParameters: typeof import("./CAD/CreationTools/OpPointByParameters").PointByParameters;
|
|
168
|
+
TemporaryPointByParameters: typeof import("./CAD/CreationTools/OpPointByParameters").TemporaryPointByParameters;
|
|
116
169
|
PointByInterpolation: typeof import("./CAD/CreationTools/OpPointByInterpolation").PointByInterpolation;
|
|
117
170
|
TemporaryPointByInterpolation: typeof import("./CAD/CreationTools/OpPointByInterpolation").TemporaryPointByInterpolation;
|
|
118
171
|
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
|
*/
|
|
@@ -79,6 +114,9 @@ export declare enum OperationToId {
|
|
|
79
114
|
CAD_TransformationTools_ProjectOnLine = 2103,
|
|
80
115
|
CAD_TransformationTools_ProjectOnFace_by_Vector = 2104,
|
|
81
116
|
CAD_TransformationTools_ProjectOnFace_by_Normal = 2105,
|
|
117
|
+
CAD_TransformationTools_MirrorByFace = 2106,
|
|
118
|
+
CAD_TransformationTools_MirrorByLine = 2107,
|
|
119
|
+
CAD_TransformationTools_MirrorByPoint = 2108,
|
|
82
120
|
/**
|
|
83
121
|
* CAD - Editing Tools - 22xx
|
|
84
122
|
*/
|
|
@@ -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
|
*/
|