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
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractFace extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractFace extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractLine extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractLine extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractPoint extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractPoint extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractShell extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractShell extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractSolid extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractSolid extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class ExtractBuildExtractWire extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
private selectionData;
|
|
15
14
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -23,10 +22,6 @@ export declare class ExtractBuildExtractWire extends Operation {
|
|
|
23
22
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
24
23
|
*/
|
|
25
24
|
private addActionButtons;
|
|
26
|
-
/**
|
|
27
|
-
* Create dropdown list for entityButton
|
|
28
|
-
*/
|
|
29
|
-
private createDropdownListItems;
|
|
30
25
|
/**
|
|
31
26
|
* Initializes uiComponents on opening the operationUI
|
|
32
27
|
*/
|
|
@@ -8,7 +8,6 @@ export declare class FaceByEdges extends Operation {
|
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private availableEntities;
|
|
12
11
|
private entity;
|
|
13
12
|
private selectionData;
|
|
14
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -18,10 +17,6 @@ export declare class FaceByEdges extends Operation {
|
|
|
18
17
|
* Add entity button
|
|
19
18
|
*/
|
|
20
19
|
private addEntityButton;
|
|
21
|
-
/**
|
|
22
|
-
* Create dropdown list for entityButton
|
|
23
|
-
*/
|
|
24
|
-
private createDropdownListItems;
|
|
25
20
|
/**
|
|
26
21
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
27
22
|
*/
|
|
@@ -11,7 +11,6 @@ export declare class FaceByExtension extends Operation {
|
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
13
|
private readonly inputsContainer;
|
|
14
|
-
private availableEntities;
|
|
15
14
|
private uLength;
|
|
16
15
|
private vLength;
|
|
17
16
|
private selectionData;
|
|
@@ -22,10 +21,6 @@ export declare class FaceByExtension extends Operation {
|
|
|
22
21
|
* Add entity button
|
|
23
22
|
*/
|
|
24
23
|
private addEntityButton;
|
|
25
|
-
/**
|
|
26
|
-
* Create dropdown list for entityButton
|
|
27
|
-
*/
|
|
28
|
-
private createDropdownListItems;
|
|
29
24
|
/**
|
|
30
25
|
* Add input fields
|
|
31
26
|
*/
|
|
@@ -15,9 +15,6 @@ export declare class FaceByExtrusion extends Operation {
|
|
|
15
15
|
private readonly onAcceptHandler;
|
|
16
16
|
private readonly onRejectHandler;
|
|
17
17
|
private readonly buttonsContainer;
|
|
18
|
-
private availableEntities_1;
|
|
19
|
-
private availableEntities_2;
|
|
20
|
-
private availableEntities_3;
|
|
21
18
|
private length;
|
|
22
19
|
private dx;
|
|
23
20
|
private dy;
|
|
@@ -34,7 +31,6 @@ export declare class FaceByExtrusion extends Operation {
|
|
|
34
31
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
35
32
|
private setEnabledEntity;
|
|
36
33
|
private setActiveButton;
|
|
37
|
-
private changeMode;
|
|
38
34
|
/**
|
|
39
35
|
* Add dropdown list
|
|
40
36
|
*/
|
|
@@ -43,12 +39,6 @@ export declare class FaceByExtrusion extends Operation {
|
|
|
43
39
|
* Add entity button
|
|
44
40
|
*/
|
|
45
41
|
private buttons;
|
|
46
|
-
/**
|
|
47
|
-
* Create dropdown list for entityButton
|
|
48
|
-
*/
|
|
49
|
-
private createDropdownListItems_1;
|
|
50
|
-
private createDropdownListItems_2;
|
|
51
|
-
private createDropdownListItems_3;
|
|
52
42
|
/**
|
|
53
43
|
* Add input field
|
|
54
44
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class FaceByFilling extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private method;
|
|
14
13
|
private minDegree;
|
|
15
14
|
private maxDegree;
|
|
@@ -25,10 +24,6 @@ export declare class FaceByFilling extends Operation {
|
|
|
25
24
|
* Add entity button
|
|
26
25
|
*/
|
|
27
26
|
private addEntityButton;
|
|
28
|
-
/**
|
|
29
|
-
* Create dropdown list for entityButton
|
|
30
|
-
*/
|
|
31
|
-
private createDropdownListItems;
|
|
32
27
|
/**
|
|
33
28
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
34
29
|
*/
|
|
@@ -14,7 +14,6 @@ export declare class FaceByOffset extends Operation {
|
|
|
14
14
|
private readonly onRejectHandler;
|
|
15
15
|
private readonly buttonsContainer;
|
|
16
16
|
private readonly inputsContainer;
|
|
17
|
-
private availableEntities;
|
|
18
17
|
private offset;
|
|
19
18
|
private selectionData;
|
|
20
19
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
@@ -24,10 +23,6 @@ export declare class FaceByOffset extends Operation {
|
|
|
24
23
|
* Add entity button
|
|
25
24
|
*/
|
|
26
25
|
private addEntityButton;
|
|
27
|
-
/**
|
|
28
|
-
* Create dropdown list for entityButton
|
|
29
|
-
*/
|
|
30
|
-
private createDropdownListItems;
|
|
31
26
|
private addFields;
|
|
32
27
|
private addCheckmarks;
|
|
33
28
|
/**
|
|
@@ -9,7 +9,6 @@ export declare class FaceByReconstruction extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
14
|
private setEnabledEntity;
|
|
@@ -22,10 +21,6 @@ export declare class FaceByReconstruction extends Operation {
|
|
|
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
|
*/
|
|
@@ -1,55 +1,26 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class FaceByRevolute extends Operation {
|
|
6
|
-
private
|
|
7
|
-
private
|
|
6
|
+
private profileButton;
|
|
7
|
+
private axisButton;
|
|
8
8
|
private angleInput;
|
|
9
|
+
private angle;
|
|
9
10
|
private readonly onPreviewHandler;
|
|
10
11
|
private readonly onAcceptHandler;
|
|
11
12
|
private readonly onRejectHandler;
|
|
12
13
|
private readonly buttonsContainer;
|
|
13
14
|
private readonly inputsContainer;
|
|
14
|
-
private
|
|
15
|
-
private availableEntities_2;
|
|
16
|
-
private entity_1;
|
|
17
|
-
private entity_2;
|
|
18
|
-
private angle;
|
|
15
|
+
private selectionData;
|
|
19
16
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
20
|
-
private
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
private setActiveButton_2;
|
|
24
|
-
/**
|
|
25
|
-
* Add entity button
|
|
26
|
-
*/
|
|
27
|
-
private addEntityButton_1;
|
|
28
|
-
private addEntityButton_2;
|
|
29
|
-
private addFields;
|
|
30
|
-
/**
|
|
31
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
32
|
-
*/
|
|
33
|
-
private addActionButtons;
|
|
34
|
-
/**
|
|
35
|
-
* Create dropdown list for entityButton_1
|
|
36
|
-
*/
|
|
37
|
-
private createDropdownListItems_1;
|
|
38
|
-
/**
|
|
39
|
-
* Create dropdown list for entityButton_2
|
|
40
|
-
*/
|
|
41
|
-
private createDropdownListItems_2;
|
|
42
|
-
/**
|
|
43
|
-
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
44
|
-
*/
|
|
17
|
+
private setActiveButton;
|
|
18
|
+
private buildInput;
|
|
19
|
+
private onPreview;
|
|
45
20
|
private onAccept;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
*/
|
|
21
|
+
private onReject;
|
|
22
|
+
unselect(): void;
|
|
49
23
|
init(): void;
|
|
50
|
-
/**
|
|
51
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
52
|
-
*/
|
|
53
24
|
reset(): void;
|
|
54
25
|
}
|
|
55
26
|
export {};
|
|
@@ -10,8 +10,6 @@ export declare class FaceBySweep 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 FaceBySweep 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_2
|
|
37
|
-
*/
|
|
38
|
-
private createDropdownListItems_2;
|
|
39
29
|
/**
|
|
40
30
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
41
31
|
*/
|
|
@@ -11,9 +11,6 @@ export declare class FaceBySweepbiNormal extends Operation {
|
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
13
|
private readonly inputsContainer;
|
|
14
|
-
private availableEntities_1;
|
|
15
|
-
private availableEntities_2;
|
|
16
|
-
private availableEntities_3;
|
|
17
14
|
private entity_1;
|
|
18
15
|
private entity_2;
|
|
19
16
|
private entity_3;
|
|
@@ -34,18 +31,6 @@ export declare class FaceBySweepbiNormal extends Operation {
|
|
|
34
31
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
35
32
|
*/
|
|
36
33
|
private addActionButtons;
|
|
37
|
-
/**
|
|
38
|
-
* Create dropdown list for entityButton_1
|
|
39
|
-
*/
|
|
40
|
-
private createDropdownListItems_1;
|
|
41
|
-
/**
|
|
42
|
-
* Create dropdown list for entityButton_2
|
|
43
|
-
*/
|
|
44
|
-
private createDropdownListItems_2;
|
|
45
|
-
/**
|
|
46
|
-
* Create dropdown list for entityButton_3
|
|
47
|
-
*/
|
|
48
|
-
private createDropdownListItems_3;
|
|
49
34
|
/**
|
|
50
35
|
* Extracts the selected entities from dict 'selected' and starts the attached task
|
|
51
36
|
*/
|
|
@@ -9,7 +9,6 @@ export declare class FaceMidsurface extends Operation {
|
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
11
|
private readonly inputsContainer;
|
|
12
|
-
private availableEntities;
|
|
13
12
|
private entity;
|
|
14
13
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
|
|
15
14
|
private setEnabledEntity;
|
|
@@ -22,10 +21,6 @@ export declare class FaceMidsurface extends Operation {
|
|
|
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
|
*/
|
|
@@ -11,9 +11,6 @@ export declare class FaceByLoft extends Operation {
|
|
|
11
11
|
private readonly onRejectHandler;
|
|
12
12
|
private readonly buttonsContainer;
|
|
13
13
|
private readonly inputsContainer;
|
|
14
|
-
private availableEntities_1;
|
|
15
|
-
private availableEntities_2;
|
|
16
|
-
private availableEntities_3;
|
|
17
14
|
private entity_1;
|
|
18
15
|
private entity_2;
|
|
19
16
|
private entity_3;
|
|
@@ -34,18 +31,6 @@ export declare class FaceByLoft extends Operation {
|
|
|
34
31
|
* Add action buttons (-> Preview, Accept, Reject)
|
|
35
32
|
*/
|
|
36
33
|
private addActionButtons;
|
|
37
|
-
/**
|
|
38
|
-
* Create dropdown list for entityButton_1
|
|
39
|
-
*/
|
|
40
|
-
private createDropdownListItems_1;
|
|
41
|
-
/**
|
|
42
|
-
* Create dropdown list for entityButton_2
|
|
43
|
-
*/
|
|
44
|
-
private createDropdownListItems_2;
|
|
45
|
-
/**
|
|
46
|
-
* Create dropdown list for entityButton_3
|
|
47
|
-
*/
|
|
48
|
-
private createDropdownListItems_3;
|
|
49
34
|
/**
|
|
50
35
|
* Initializes uiComponents on opening the operationUI
|
|
51
36
|
*/
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
+
import * as PointAtCOG from "./Point/UIPointAtCOG";
|
|
1
2
|
import * as PointAtCenter from "./Point/UIPointAtCenter";
|
|
2
3
|
import * as PointAtIntersection from "./Point/UIPointAtIntersection";
|
|
3
4
|
import * as PointByInterpolation from "./Point/UIPointByInterpolation";
|
|
4
5
|
import * as PointByParameters from "./Point/UIPointByParameters";
|
|
5
6
|
import * as PointByXYZ from "./Point/UIPointByXYZ";
|
|
6
7
|
import * as PointOnVertex from "./Point/UIPointOnVertex";
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
8
|
+
import * as CurveArcRadiusTwoVertices from './Curve/UICurveArcRadiusTwoVertices';
|
|
9
|
+
import * as CurveArcThreeVertices from "./Curve/UICurveArcThreeVertices";
|
|
10
|
+
import * as CurveAtIntersection from "./Curve/UICurveAtIntersection";
|
|
11
|
+
import * as CurveByInterpolation from "./Curve/UICurveByInterpolation";
|
|
12
|
+
import * as CurveByOffsetXYZ from "./Curve/UICurveByOffsetXYZ";
|
|
13
|
+
import * as CurveByXYZ from "./Curve/UICurveByXYZ";
|
|
14
|
+
import * as CurveChamfer from "./Curve/UICurveChamfer";
|
|
15
|
+
import * as CurveCircleCenterVector from "./Curve/UICurveCircleCenterVector";
|
|
16
|
+
import * as CurveCircleThreeVertices from "./Curve/UICurveCircleThreeVertices";
|
|
17
|
+
import * as CurveFillet from "./Curve/UICurveFillet";
|
|
18
|
+
import * as CurveByPoints from "./Curve/UICurveByPoints";
|
|
19
|
+
import * as CurveTangentToLines from "./Curve/UICurveTangentToLines";
|
|
20
|
+
import * as ExtractBuildBuildWire from "./ExtractBuild/UIExtractBuildBuildWire";
|
|
19
21
|
import * as FaceByEdges from "./Face/UIFaceByEdges";
|
|
20
22
|
import * as FaceByExtension from "./Face/UIFaceByExtension";
|
|
21
23
|
import * as FaceByExtrusion from "./Face/UIFaceByExtrusion";
|
|
@@ -39,15 +41,6 @@ import * as PrimitivesDisc from "./Primitives/UIPrimitivesDisc";
|
|
|
39
41
|
import * as PrimitivesRectangle from "./Primitives/UIPrimitivesRectangle";
|
|
40
42
|
import * as PrimitivesSphere from "./Primitives/UIPrimitivesSphere";
|
|
41
43
|
import * as PrimitivesTorus from "./Primitives/UIPrimitivesTorus";
|
|
42
|
-
import * as ExtractBuildBuildShell from "./ExtractBuild/UIExtractBuildBuildShell";
|
|
43
|
-
import * as ExtractBuildBuildSolid from "./ExtractBuild/UIExtractBuildBuildSolid";
|
|
44
|
-
import * as ExtractBuildBuildWire from "./ExtractBuild/UIExtractBuildBuildWire";
|
|
45
|
-
import * as ExtractBuildExtractFace from "./ExtractBuild/UIExtractBuildExtractFace";
|
|
46
|
-
import * as ExtractBuildExtractLine from "./ExtractBuild/UIExtractBuildExtractLine";
|
|
47
|
-
import * as ExtractBuildExtractPoint from "./ExtractBuild/UIExtractBuildExtractPoint";
|
|
48
|
-
import * as ExtractBuildExtractShell from "./ExtractBuild/UIExtractBuildExtractShell";
|
|
49
|
-
import * as ExtractBuildExtractSolid from "./ExtractBuild/UIExtractBuildExtractSolid";
|
|
50
|
-
import * as ExtractBuildExtractWire from "./ExtractBuild/UIExtractBuildExtractWire";
|
|
51
44
|
declare const CreationTools: {
|
|
52
45
|
Point: {
|
|
53
46
|
PointOnVertex: typeof PointOnVertex.PointOnVertex;
|
|
@@ -56,20 +49,22 @@ declare const CreationTools: {
|
|
|
56
49
|
PointByInterpolation: typeof PointByInterpolation.PointByInterpolation;
|
|
57
50
|
PointAtIntersection: typeof PointAtIntersection.PointAtIntersection;
|
|
58
51
|
PointAtCenter: typeof PointAtCenter.PointAtCenter;
|
|
52
|
+
PointAtCOG: typeof PointAtCOG.PointAtCOG;
|
|
59
53
|
};
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
54
|
+
Curve: {
|
|
55
|
+
ExtractBuildBuildWire: typeof ExtractBuildBuildWire.ExtractBuildBuildWire;
|
|
56
|
+
CurveTangentToLines: typeof CurveTangentToLines.CurveTangentToLines;
|
|
57
|
+
CurveByPoints: typeof CurveByPoints.CurveByPoints;
|
|
58
|
+
CurveFillet: typeof CurveFillet.CurveFillet;
|
|
59
|
+
CurveCircleThreeVertices: typeof CurveCircleThreeVertices.CurveCircleThreeVertices;
|
|
60
|
+
CurveCircleCenterVector: typeof CurveCircleCenterVector.CurveCircleCenterVector;
|
|
61
|
+
CurveChamfer: typeof CurveChamfer.CurveChamfer;
|
|
62
|
+
CurveByXYZ: typeof CurveByXYZ.CurveByXYZ;
|
|
63
|
+
CurveByOffsetXYZ: typeof CurveByOffsetXYZ.CurveByOffsetXYZ;
|
|
64
|
+
CurveByInterpolation: typeof CurveByInterpolation.CurveByInterpolation;
|
|
65
|
+
CurveAtIntersection: typeof CurveAtIntersection.CurveAtIntersection;
|
|
66
|
+
CurveArcThreeVertices: typeof CurveArcThreeVertices.CurveArcThreeVertices;
|
|
67
|
+
CurveArcRadiusTwoVertices: typeof CurveArcRadiusTwoVertices.CurveArcRadiusTwoVertices;
|
|
73
68
|
};
|
|
74
69
|
Face: {
|
|
75
70
|
FaceMidsurface: typeof FaceMidsurface.FaceMidsurface;
|
|
@@ -100,16 +95,5 @@ declare const CreationTools: {
|
|
|
100
95
|
PrimitivesCone: typeof PrimitivesCone.PrimitivesCone;
|
|
101
96
|
PrimitivesBox: typeof PrimitivesBox.PrimitivesBox;
|
|
102
97
|
};
|
|
103
|
-
ExtractBuild: {
|
|
104
|
-
ExtractBuildExtractWire: typeof ExtractBuildExtractWire.ExtractBuildExtractWire;
|
|
105
|
-
ExtractBuildExtractSolid: typeof ExtractBuildExtractSolid.ExtractBuildExtractSolid;
|
|
106
|
-
ExtractBuildExtractShell: typeof ExtractBuildExtractShell.ExtractBuildExtractShell;
|
|
107
|
-
ExtractBuildExtractPoint: typeof ExtractBuildExtractPoint.ExtractBuildExtractPoint;
|
|
108
|
-
ExtractBuildExtractLine: typeof ExtractBuildExtractLine.ExtractBuildExtractLine;
|
|
109
|
-
ExtractBuildExtractFace: typeof ExtractBuildExtractFace.ExtractBuildExtractFace;
|
|
110
|
-
ExtractBuildBuildWire: typeof ExtractBuildBuildWire.ExtractBuildBuildWire;
|
|
111
|
-
ExtractBuildBuildSolid: typeof ExtractBuildBuildSolid.ExtractBuildBuildSolid;
|
|
112
|
-
ExtractBuildBuildShell: typeof ExtractBuildBuildShell.ExtractBuildBuildShell;
|
|
113
|
-
};
|
|
114
98
|
};
|
|
115
99
|
export { CreationTools };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
|
+
export declare class PointAtCOG extends Operation {
|
|
6
|
+
private entityDropDownMenu;
|
|
7
|
+
private readonly onPreviewHandler;
|
|
8
|
+
private readonly onAcceptHandler;
|
|
9
|
+
private readonly onRejectHandler;
|
|
10
|
+
private readonly buttonsContainer;
|
|
11
|
+
private selectionData;
|
|
12
|
+
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
13
|
+
private setEnabledEntity;
|
|
14
|
+
private setActiveButton;
|
|
15
|
+
/**
|
|
16
|
+
* Add entity button
|
|
17
|
+
*/
|
|
18
|
+
private addEntityButton;
|
|
19
|
+
/**
|
|
20
|
+
* Add action buttons (-> Preview, Accept, Reject)
|
|
21
|
+
*/
|
|
22
|
+
private addActionButtons;
|
|
23
|
+
/**
|
|
24
|
+
* Builds the input object from current UI state
|
|
25
|
+
*/
|
|
26
|
+
private buildInput;
|
|
27
|
+
private onPreview;
|
|
28
|
+
private onAccept;
|
|
29
|
+
private onReject;
|
|
30
|
+
unselect(): void;
|
|
31
|
+
/**
|
|
32
|
+
* Initializes uiComponents on opening the operationUI
|
|
33
|
+
*/
|
|
34
|
+
init(): void;
|
|
35
|
+
/**
|
|
36
|
+
* Resets the gui elements to default on closing the operationUI
|
|
37
|
+
*/
|
|
38
|
+
reset(): void;
|
|
39
|
+
}
|
|
40
|
+
export {};
|
|
@@ -1,37 +1,25 @@
|
|
|
1
1
|
import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
|
|
2
|
-
type OnPreviewHandler = (
|
|
3
|
-
type OnAcceptHandler = (
|
|
4
|
-
type OnRejectHandler = (
|
|
2
|
+
type OnPreviewHandler = (input: {}) => Promise<void>;
|
|
3
|
+
type OnAcceptHandler = (input: {}) => Promise<boolean>;
|
|
4
|
+
type OnRejectHandler = () => Promise<void>;
|
|
5
5
|
export declare class PointAtCenter extends Operation {
|
|
6
6
|
private entityDropDownMenu;
|
|
7
7
|
private readonly onPreviewHandler;
|
|
8
8
|
private readonly onAcceptHandler;
|
|
9
9
|
private readonly onRejectHandler;
|
|
10
10
|
private readonly buttonsContainer;
|
|
11
|
-
private
|
|
11
|
+
private selectionData;
|
|
12
12
|
constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
|
|
13
13
|
private setEnabledEntity;
|
|
14
14
|
private setActiveButton;
|
|
15
|
-
/**
|
|
16
|
-
* Add entity button
|
|
17
|
-
*/
|
|
18
15
|
private addEntityButton;
|
|
19
|
-
/**
|
|
20
|
-
* Create dropdown list for entityButton
|
|
21
|
-
*/
|
|
22
|
-
private createDropdownListItems;
|
|
23
|
-
/**
|
|
24
|
-
* Add action buttons (-> Preview, Accept, Reject)
|
|
25
|
-
*/
|
|
26
16
|
private addActionButtons;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
private buildInput;
|
|
18
|
+
private onPreview;
|
|
19
|
+
private onAccept;
|
|
20
|
+
private onReject;
|
|
21
|
+
unselect(): void;
|
|
30
22
|
init(): void;
|
|
31
|
-
/**
|
|
32
|
-
* Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
|
|
33
|
-
*/
|
|
34
23
|
reset(): void;
|
|
35
|
-
private onAccept;
|
|
36
24
|
}
|
|
37
25
|
export {};
|