发布2.3.7b12
正在显示
包含
9092 行增加
和
3801 行删除
+9092
-3801
- MeshConfig.cpp Code/ConfigOptions/MeshConfig.cpp +1 -1
- Create_Linux64_Project.sh Code/Create_Linux64_Project.sh +16 -1
- Create_X64_Project.bat Code/Create_X64_Project.bat +22 -0
- PropertyList.cpp Code/DataProperty/PropertyList.cpp +14 -0
- PropertyList.h Code/DataProperty/PropertyList.h +2 -0
- FastCAE.sln Code/FastCAE.sln +401 -339
- GeoCommandBool.cpp Code/GeometryCommand/GeoCommandBool.cpp +103 -51
- GeoCommandBool.h Code/GeometryCommand/GeoCommandBool.h +9 -6
- GeoCommandCommon.cpp Code/GeometryCommand/GeoCommandCommon.cpp +24 -1
- GeoCommandCommon.h Code/GeometryCommand/GeoCommandCommon.h +2 -0
- GeoCommandCreateBox.cpp Code/GeometryCommand/GeoCommandCreateBox.cpp +2 -2
- GeoCommandCreateCylinder.cpp Code/GeometryCommand/GeoCommandCreateCylinder.cpp +1 -1
- GeoCommandCreateDatumplane.cpp Code/GeometryCommand/GeoCommandCreateDatumplane.cpp +1 -1
- GeoCommandCreateFace.cpp Code/GeometryCommand/GeoCommandCreateFace.cpp +5 -0
- GeoCommandCreateFace.h Code/GeometryCommand/GeoCommandCreateFace.h +0 -2
- GeoCommandCreateVariableFillet.cpp Code/GeometryCommand/GeoCommandCreateVariableFillet.cpp +4 -1
- GeoCommandGeoSplitter.cpp Code/GeometryCommand/GeoCommandGeoSplitter.cpp +206 -125
- GeoCommandGeoSplitter.h Code/GeometryCommand/GeoCommandGeoSplitter.h +5 -3
- GeoCommandImport.h Code/GeometryCommand/GeoCommandImport.h +2 -2
- GeoCommandMakeMatrix.cpp Code/GeometryCommand/GeoCommandMakeMatrix.cpp +23 -11
- GeoCommandMakeMatrix.h Code/GeometryCommand/GeoCommandMakeMatrix.h +4 -1
- GeoCommandMirrorFeature.cpp Code/GeometryCommand/GeoCommandMirrorFeature.cpp +121 -27
- GeoCommandMirrorFeature.h Code/GeometryCommand/GeoCommandMirrorFeature.h +5 -1
- GeoCommandMoveFeature.cpp Code/GeometryCommand/GeoCommandMoveFeature.cpp +107 -19
- GeoCommandMoveFeature.h Code/GeometryCommand/GeoCommandMoveFeature.h +4 -2
- GeoCommandPy.cpp Code/GeometryCommand/GeoCommandPy.cpp +237 -117
- GeoCommandPy.h Code/GeometryCommand/GeoCommandPy.h +20 -17
- GeoCommandRemove.cpp Code/GeometryCommand/GeoCommandRemove.cpp +1 -1
- GeoCommandRotateFeature.cpp Code/GeometryCommand/GeoCommandRotateFeature.cpp +151 -71
- GeoCommandRotateFeature.h Code/GeometryCommand/GeoCommandRotateFeature.h +4 -2
- GeometryThreadBase.cpp Code/GeometryDataExchange/GeometryThreadBase.cpp +3 -1
- GeometryThreadBase.h Code/GeometryDataExchange/GeometryThreadBase.h +1 -0
- IGESdataExchange.cpp Code/GeometryDataExchange/IGESdataExchange.cpp +2 -2
- STEPdataExchange.cpp Code/GeometryDataExchange/STEPdataExchange.cpp +2 -2
- _Create_project.sh Code/GeometryDataExchange/_Create_project.sh +3 -0
- dialogBoolOperation.cpp Code/GeometryWidgets/dialogBoolOperation.cpp +81 -47
- dialogBoolOperation.h Code/GeometryWidgets/dialogBoolOperation.h +4 -9
- dialogCreateDatumplane.cpp Code/GeometryWidgets/dialogCreateDatumplane.cpp +6 -18
- dialogCreateDatumplane.h Code/GeometryWidgets/dialogCreateDatumplane.h +3 -5
- dialogCreateFace.cpp Code/GeometryWidgets/dialogCreateFace.cpp +28 -30
- dialogCreateFace.h Code/GeometryWidgets/dialogCreateFace.h +1 -3
- dialogCreateLine.cpp Code/GeometryWidgets/dialogCreateLine.cpp +8 -3
- dialogCreatePoint.cpp Code/GeometryWidgets/dialogCreatePoint.cpp +0 -1
- dialogGeoSplitter.cpp Code/GeometryWidgets/dialogGeoSplitter.cpp +76 -46
- dialogGeoSplitter.h Code/GeometryWidgets/dialogGeoSplitter.h +3 -6
- dialogMakeChamfer.cpp Code/GeometryWidgets/dialogMakeChamfer.cpp +17 -33
- dialogMakeChamfer.h Code/GeometryWidgets/dialogMakeChamfer.h +2 -4
- dialogMakeExtrusion.cpp Code/GeometryWidgets/dialogMakeExtrusion.cpp +9 -32
- dialogMakeExtrusion.h Code/GeometryWidgets/dialogMakeExtrusion.h +1 -5
- dialogMakeFillet.cpp Code/GeometryWidgets/dialogMakeFillet.cpp +13 -30
- dialogMakeFillet.h Code/GeometryWidgets/dialogMakeFillet.h +2 -3
- dialogMakeLoft.cpp Code/GeometryWidgets/dialogMakeLoft.cpp +46 -59
- dialogMakeLoft.h Code/GeometryWidgets/dialogMakeLoft.h +2 -5
- dialogMakeMatrix.cpp Code/GeometryWidgets/dialogMakeMatrix.cpp +62 -38
- dialogMakeMatrix.h Code/GeometryWidgets/dialogMakeMatrix.h +2 -4
- dialogMakeRevol.cpp Code/GeometryWidgets/dialogMakeRevol.cpp +36 -50
- dialogMakeRevol.h Code/GeometryWidgets/dialogMakeRevol.h +1 -11
- dialogMakeSweep.cpp Code/GeometryWidgets/dialogMakeSweep.cpp +22 -36
- dialogMakeSweep.h Code/GeometryWidgets/dialogMakeSweep.h +3 -7
- dialogMeasureDistance.cpp Code/GeometryWidgets/dialogMeasureDistance.cpp +14 -23
- dialogMeasureDistance.h Code/GeometryWidgets/dialogMeasureDistance.h +4 -5
- dialogMirrorFeature.cpp Code/GeometryWidgets/dialogMirrorFeature.cpp +87 -68
- dialogMirrorFeature.h Code/GeometryWidgets/dialogMirrorFeature.h +5 -8
- dialogMoveFeature.cpp Code/GeometryWidgets/dialogMoveFeature.cpp +60 -33
- dialogMoveFeature.h Code/GeometryWidgets/dialogMoveFeature.h +2 -4
- dialogRotateFeature.cpp Code/GeometryWidgets/dialogRotateFeature.cpp +114 -79
- dialogRotateFeature.h Code/GeometryWidgets/dialogRotateFeature.h +6 -9
- dialogSketchPlane.cpp Code/GeometryWidgets/dialogSketchPlane.cpp +14 -23
- dialogSketchPlane.h Code/GeometryWidgets/dialogSketchPlane.h +1 -4
- dialogVariableFillet.cpp Code/GeometryWidgets/dialogVariableFillet.cpp +19 -48
- dialogVariableFillet.h Code/GeometryWidgets/dialogVariableFillet.h +3 -6
- geoDialogBase.cpp Code/GeometryWidgets/geoDialogBase.cpp +29 -10
- geoDialogBase.h Code/GeometryWidgets/geoDialogBase.h +19 -3
- geoPointWidget.cpp Code/GeometryWidgets/geoPointWidget.cpp +20 -17
- geoPointWidget.h Code/GeometryWidgets/geoPointWidget.h +6 -5
- DialogLocalSetting.cpp Code/Gmsh/DialogLocalSetting.cpp +439 -17
- DialogLocalSetting.h Code/Gmsh/DialogLocalSetting.h +34 -0
- DialogLocalSetting.ui Code/Gmsh/DialogLocalSetting.ui +235 -56
- DialogSolidMesh.cpp Code/Gmsh/DialogSolidMesh.cpp +169 -20
- DialogSolidMesh.h Code/Gmsh/DialogSolidMesh.h +12 -3
- DialogSolidMesh.ui Code/Gmsh/DialogSolidMesh.ui +123 -105
- DialogSurfaceMesh.cpp Code/Gmsh/DialogSurfaceMesh.cpp +126 -15
- DialogSurfaceMesh.h Code/Gmsh/DialogSurfaceMesh.h +7 -3
- DialogSurfaceMesh.ui Code/Gmsh/DialogSurfaceMesh.ui +21 -3
- GmshDialogBase.cpp Code/Gmsh/GmshDialogBase.cpp +34 -3
- GmshDialogBase.h Code/Gmsh/GmshDialogBase.h +9 -0
- GmshModule.cpp Code/Gmsh/GmshModule.cpp +1 -0
- GmshModule.h Code/Gmsh/GmshModule.h +1 -0
- GmshModule.pri Code/Gmsh/GmshModule.pri +5 -1
- GmshPy.cpp Code/Gmsh/GmshPy.cpp +38 -15
- GmshPy.h Code/Gmsh/GmshPy.h +6 -6
- GmshThread.cpp Code/Gmsh/GmshThread.cpp +435 -56
- GmshThread.h Code/Gmsh/GmshThread.h +40 -6
- LocalField.cpp Code/Gmsh/LocalField.cpp +105 -0
- LocalField.h Code/Gmsh/LocalField.h +86 -0
- MeshReader.cpp Code/Gmsh/MeshReader.cpp +396 -0
- MeshReader.h Code/Gmsh/MeshReader.h +51 -0
- ProjectFileIO.cpp Code/IO/ProjectFileIO.cpp +21 -3
- ProjectFileIO.h Code/IO/ProjectFileIO.h +18 -7
- ControlPanel.cpp Code/MainWidgets/ControlPanel.cpp +18 -9
- ControlPanel.h Code/MainWidgets/ControlPanel.h +12 -10
- DialogCreateSet.cpp Code/MainWidgets/DialogCreateSet.cpp +6 -4
- MeshWidget.cpp Code/MainWidgets/MeshWidget.cpp +33 -14
- MeshWidget.h Code/MainWidgets/MeshWidget.h +2 -0
- PhysicsWidget.cpp Code/MainWidgets/PhysicsWidget.cpp +20 -12
- PropertyTable.cpp Code/MainWidgets/PropertyTable.cpp +18 -13
- PropertyTable.h Code/MainWidgets/PropertyTable.h +5 -3