move Path to CAM
@@ -75,8 +75,8 @@
|
||||
#include <Mod/Part/App/CrossSection.h>
|
||||
#include <Mod/Part/App/FaceMakerBullseye.h>
|
||||
#include <Mod/Part/App/PartFeature.h>
|
||||
#include <Mod/Path/App/PathSegmentWalker.h>
|
||||
#include <Mod/Path/libarea/Area.h>
|
||||
#include <Mod/CAM/App/PathSegmentWalker.h>
|
||||
#include <Mod/CAM/libarea/Area.h>
|
||||
|
||||
#include "Area.h"
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
#include <TopoDS.hxx>
|
||||
|
||||
#include <Mod/Path/PathGlobal.h>
|
||||
#include <Mod/CAM/PathGlobal.h>
|
||||
#include <Mod/Part/App/PartPyCXX.h>
|
||||
#include <Mod/Part/App/TopoShape.h>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
Name="AreaPy"
|
||||
Twin="Area"
|
||||
TwinPointer="Area"
|
||||
Include="Mod/Path/App/Area.h"
|
||||
Include="Mod/CAM/App/Area.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="Base/BaseClassPy.h"
|
||||
FatherNamespace="Base"
|
||||
@@ -142,7 +142,7 @@ if(FREECAD_USE_PCH)
|
||||
ADD_MSVC_PRECOMPILED_HEADER(Path PreCompiled.h PreCompiled.cpp Path_CPP_SRCS)
|
||||
endif(FREECAD_USE_PCH)
|
||||
|
||||
SET_BIN_DIR(Path PathApp /Mod/Path)
|
||||
SET_BIN_DIR(Path PathApp /Mod/CAM)
|
||||
SET_PYTHON_PREFIX_SUFFIX(Path)
|
||||
|
||||
INSTALL(TARGETS Path DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
@@ -29,7 +29,7 @@
|
||||
#include <Base/Persistence.h>
|
||||
#include <Base/Placement.h>
|
||||
#include <Base/Vector3D.h>
|
||||
#include <Mod/Path/PathGlobal.h>
|
||||
#include <Mod/CAM/PathGlobal.h>
|
||||
|
||||
namespace Path
|
||||
{
|
||||
@@ -5,7 +5,7 @@
|
||||
Name="CommandPy"
|
||||
Twin="Command"
|
||||
TwinPointer="Command"
|
||||
Include="Mod/Path/App/Command.h"
|
||||
Include="Mod/CAM/App/Command.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="Base/PersistencePy.h"
|
||||
FatherNamespace="Base"
|
||||
@@ -5,7 +5,7 @@
|
||||
Name="FeatureAreaPy"
|
||||
Twin="FeatureArea"
|
||||
TwinPointer="FeatureArea"
|
||||
Include="Mod/Path/App/FeatureArea.h"
|
||||
Include="Mod/CAM/App/FeatureArea.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="App/DocumentObjectPy.h"
|
||||
FatherNamespace="App">
|
||||
@@ -5,7 +5,7 @@
|
||||
Name="FeaturePathCompoundPy"
|
||||
Twin="FeaturePathCompound"
|
||||
TwinPointer="FeatureCompound"
|
||||
Include="Mod/Path/App/FeaturePathCompound.h"
|
||||
Include="Mod/CAM/App/FeaturePathCompound.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="App/DocumentObjectPy.h"
|
||||
FatherNamespace="App">
|
||||
@@ -50,15 +50,15 @@
|
||||
* double check your macro definition of the parameter is correctly, not missing
|
||||
* or having extra parenthesis or comma. Then, you can use the CMake
|
||||
* intermediate file target to get the preprocessor output for checking. For
|
||||
* example, for a file located at \c src/Mod/Path/App/Area.cpp,
|
||||
* example, for a file located at \c src/Mod/CAM/App/Area.cpp,
|
||||
* \code{.sh}
|
||||
* cd <your_build_dir>/src/Mod/Path/App
|
||||
* cd <your_build_dir>/src/Mod/CAM/App
|
||||
* make Area.cpp.i
|
||||
* \endcode
|
||||
*
|
||||
* The preprocessed intermediate output will be at,
|
||||
* \code{.sh}
|
||||
* <your_build_dir>/src/Mod/Path/App.CMakeFiles/Path.dir/Area.cpp.i
|
||||
* <your_build_dir>/src/Mod/CAM/App.CMakeFiles/Path.dir/Area.cpp.i
|
||||
* \endcode
|
||||
*
|
||||
* \section Introduction of Boost.Preprocessor
|
||||
@@ -27,7 +27,7 @@
|
||||
#include <Base/Reader.h>
|
||||
#include <Base/Stream.h>
|
||||
#include <Base/Writer.h>
|
||||
#include <Mod/Path/App/PathSegmentWalker.h>
|
||||
#include <Mod/CAM/App/PathSegmentWalker.h>
|
||||
|
||||
#include "Path.h"
|
||||
|
||||
@@ -141,7 +141,7 @@ double Toolpath::getCycleTime(double hFeed, double vFeed, double hRapid, double
|
||||
{
|
||||
// check the feedrates are set
|
||||
if ((hFeed == 0) || (vFeed == 0)) {
|
||||
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Mod/Path");
|
||||
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Mod/CAM");
|
||||
if (!hGrp->GetBool("WarningsSuppressAllSpeeds", true)) {
|
||||
Base::Console().Warning("Feed Rate Error: Check Tool Controllers have Feed Rates");
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
Name="PathPy"
|
||||
Twin="Toolpath"
|
||||
TwinPointer="Toolpath"
|
||||
Include="Mod/Path/App/Path.h"
|
||||
Include="Mod/CAM/App/Path.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="Base/PersistencePy.h"
|
||||
FatherNamespace="Base"
|
||||
@@ -28,7 +28,7 @@
|
||||
#include <Base/BaseClass.h>
|
||||
#include <Base/Handle.h>
|
||||
#include <Base/Vector3D.h>
|
||||
#include <Mod/Path/PathGlobal.h>
|
||||
#include <Mod/CAM/PathGlobal.h>
|
||||
|
||||
#include <boost/polygon/polygon.hpp>
|
||||
#include <boost/polygon/voronoi.hpp>
|
||||
@@ -6,7 +6,7 @@
|
||||
PythonName="Path.Voronoi.Cell"
|
||||
Twin="VoronoiCell"
|
||||
TwinPointer="VoronoiCell"
|
||||
Include="Mod/Path/App/VoronoiCell.h"
|
||||
Include="Mod/CAM/App/VoronoiCell.h"
|
||||
FatherInclude="Base/BaseClassPy.h"
|
||||
Namespace="Path"
|
||||
FatherNamespace="Base"
|
||||
@@ -6,7 +6,7 @@
|
||||
PythonName="Path.Voronoi.Edge"
|
||||
Twin="VoronoiEdge"
|
||||
TwinPointer="VoronoiEdge"
|
||||
Include="Mod/Path/App/VoronoiEdge.h"
|
||||
Include="Mod/CAM/App/VoronoiEdge.h"
|
||||
FatherInclude="Base/BaseClassPy.h"
|
||||
Namespace="Path"
|
||||
FatherNamespace="Base"
|
||||
@@ -6,7 +6,7 @@
|
||||
PythonName="Path.Voronoi.Diagram"
|
||||
Twin="Voronoi"
|
||||
TwinPointer="Voronoi"
|
||||
Include="Mod/Path/App/Voronoi.h"
|
||||
Include="Mod/CAM/App/Voronoi.h"
|
||||
Namespace="Path"
|
||||
FatherInclude="Base/BaseClassPy.h"
|
||||
FatherNamespace="Base"
|
||||
@@ -6,7 +6,7 @@
|
||||
PythonName="Path.Voronoi.Vertex"
|
||||
Twin="VoronoiVertex"
|
||||
TwinPointer="VoronoiVertex"
|
||||
Include="Mod/Path/App/VoronoiVertex.h"
|
||||
Include="Mod/CAM/App/VoronoiVertex.h"
|
||||
FatherInclude="Base/BaseClassPy.h"
|
||||
Namespace="Path"
|
||||
FatherNamespace="Base"
|
||||
@@ -20,7 +20,7 @@ INSTALL(
|
||||
FILES
|
||||
${Path_Scripts}
|
||||
DESTINATION
|
||||
Mod/Path
|
||||
Mod/CAM
|
||||
)
|
||||
|
||||
SET(PathPython_SRCS
|
||||
@@ -404,124 +404,124 @@ ADD_CUSTOM_TARGET(PathTests ALL
|
||||
SOURCES ${test_files}
|
||||
)
|
||||
|
||||
fc_copy_sources(PathScripts "${CMAKE_BINARY_DIR}/Mod/Path" ${all_files})
|
||||
fc_copy_sources(PathTests "${CMAKE_BINARY_DIR}/Mod/Path" ${test_files})
|
||||
fc_copy_sources(PathScripts "${CMAKE_BINARY_DIR}/Mod/CAM" ${all_files})
|
||||
fc_copy_sources(PathTests "${CMAKE_BINARY_DIR}/Mod/CAM" ${test_files})
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathScripts_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/PathScripts
|
||||
Mod/CAM/PathScripts
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPython_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path
|
||||
Mod/CAM/Path
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonBase_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Base
|
||||
Mod/CAM/Path/Base
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonBaseGenerator_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Base/Generator
|
||||
Mod/CAM/Path/Base/Generator
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonBaseGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Base/Gui
|
||||
Mod/CAM/Path/Base/Gui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonDressup_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Dressup
|
||||
Mod/CAM/Path/Dressup
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonDressupGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Dressup/Gui
|
||||
Mod/CAM/Path/Dressup/Gui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonMain_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Main
|
||||
Mod/CAM/Path/Main
|
||||
)
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonMainGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Main/Gui
|
||||
Mod/CAM/Path/Main/Gui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonOp_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Op
|
||||
Mod/CAM/Path/Op
|
||||
)
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonOpGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Op/Gui
|
||||
Mod/CAM/Path/Op/Gui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonPost_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Post
|
||||
Mod/CAM/Path/Post
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonPostScripts_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Post/scripts
|
||||
Mod/CAM/Path/Post/scripts
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonTools_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Tool
|
||||
Mod/CAM/Path/Tool
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathPythonToolsGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Path/Tool/Gui
|
||||
Mod/CAM/Path/Tool/Gui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathTests_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/PathTests
|
||||
Mod/CAM/PathTests
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
DIRECTORY
|
||||
PathTests/Tools
|
||||
DESTINATION
|
||||
Mod/Path/PathTests
|
||||
Mod/CAM/PathTests
|
||||
)
|
||||
|
||||
|
||||
@@ -529,54 +529,54 @@ INSTALL(
|
||||
FILES
|
||||
${PathPythonGui_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/PathPythonGui
|
||||
Mod/CAM/PathPythonGui
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${Tools_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Tools
|
||||
Mod/CAM/Tools
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${Tools_Bit_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Tools/Bit
|
||||
Mod/CAM/Tools/Bit
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${Tools_Library_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Tools/Library
|
||||
Mod/CAM/Tools/Library
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${Tools_Shape_SRCS}
|
||||
DESTINATION
|
||||
Mod/Path/Tools/Shape
|
||||
Mod/CAM/Tools/Shape
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathImages_Ops}
|
||||
DESTINATION
|
||||
Mod/Path/Images/Ops
|
||||
Mod/CAM/Images/Ops
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathImages_Tools}
|
||||
DESTINATION
|
||||
Mod/Path/Images/Tools
|
||||
Mod/CAM/Images/Tools
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${PathData_Threads}
|
||||
DESTINATION
|
||||
Mod/Path/Data/Threads
|
||||
Mod/CAM/Data/Threads
|
||||
)
|
||||
@@ -76,7 +76,7 @@ private:
|
||||
|
||||
try {
|
||||
std::string path = App::Application::getHomePath();
|
||||
path += "Mod/Path/Path/Post/scripts/";
|
||||
path += "Mod/CAM/Path/Post/scripts/";
|
||||
QDir dir1(QString::fromUtf8(path.c_str()), QString::fromLatin1("*_pre.py"));
|
||||
std::string cMacroPath = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Macro")
|
||||
->GetASCII("MacroPath",App::Application::getUserMacroDir().c_str());
|
||||
@@ -143,7 +143,7 @@ private:
|
||||
|
||||
try {
|
||||
std::string path = App::Application::getHomePath();
|
||||
path += "Mod/Path/Path/Post/scripts/";
|
||||
path += "Mod/CAM/Path/Post/scripts/";
|
||||
QDir dir1(QString::fromUtf8(path.c_str()), QString::fromLatin1("*_pre.py"));
|
||||
std::string cMacroPath = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Macro")
|
||||
->GetASCII("MacroPath",App::Application::getUserMacroDir().c_str());
|
||||
@@ -219,7 +219,7 @@ private:
|
||||
throw Py::RuntimeError("No object to export");
|
||||
|
||||
std::string path = App::Application::getHomePath();
|
||||
path += "Mod/Path/Path/Post/scripts/";
|
||||
path += "Mod/CAM/Path/Post/scripts/";
|
||||
QDir dir1(QString::fromUtf8(path.c_str()), QString::fromLatin1("*_post.py"));
|
||||
std::string cMacroPath = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Macro")
|
||||
->GetASCII("MacroPath",App::Application::getUserMacroDir().c_str());
|
||||
@@ -86,10 +86,10 @@ SET(PathGuiIcon_SVG
|
||||
add_library(PathGui SHARED ${PathGui_SRCS} ${PathGuiIcon_SVG})
|
||||
target_link_libraries(PathGui ${PathGui_LIBS})
|
||||
|
||||
SET_BIN_DIR(PathGui PathGui /Mod/Path)
|
||||
SET_BIN_DIR(PathGui PathGui /Mod/CAM)
|
||||
SET_PYTHON_PREFIX_SUFFIX(PathGui)
|
||||
|
||||
fc_copy_sources(PathGui "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/Path" ${PathGuiIcon_SVG})
|
||||
fc_copy_sources(PathGui "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/CAM" ${PathGuiIcon_SVG})
|
||||
|
||||
INSTALL(TARGETS PathGui DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
INSTALL(FILES ${PathGuiIcon_SVG} DESTINATION "${CMAKE_INSTALL_DATADIR}/Mod/Path/Resources/icons")
|
||||
INSTALL(FILES ${PathGuiIcon_SVG} DESTINATION "${CMAKE_INSTALL_DATADIR}/Mod/CAM/Resources/icons")
|
||||
@@ -31,8 +31,8 @@
|
||||
#include <Gui/Document.h>
|
||||
#include <Gui/Selection.h>
|
||||
#include <Gui/SelectionObject.h>
|
||||
#include <Mod/Path/App/FeatureArea.h>
|
||||
#include <Mod/Path/App/FeaturePathShape.h>
|
||||
#include <Mod/CAM/App/FeatureArea.h>
|
||||
#include <Mod/CAM/App/FeaturePathShape.h>
|
||||
|
||||
|
||||
// Path Area #####################################################################################################
|
||||
@@ -41,7 +41,7 @@
|
||||
<cstring>DefaultPathLineWidth</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -87,7 +87,7 @@
|
||||
<cstring>DefaultBBoxNormalColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -120,7 +120,7 @@
|
||||
<cstring>DefaultNormalPathColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -140,7 +140,7 @@
|
||||
<cstring>DefaultRapidPathColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -186,7 +186,7 @@
|
||||
<cstring>DefaultHighlightPathColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -232,7 +232,7 @@
|
||||
<cstring>DefaultPathMarkerColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -265,7 +265,7 @@
|
||||
<cstring>DefaultProbePathColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -285,7 +285,7 @@
|
||||
<cstring>DefaultBBoxSelectionColor</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -329,7 +329,7 @@
|
||||
<cstring>DefaultSelectionStyle</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
@@ -361,7 +361,7 @@
|
||||
<cstring>DefaultTaskPanelLayout</cstring>
|
||||
</property>
|
||||
<property name="prefPath" stdset="0">
|
||||
<cstring>Mod/Path</cstring>
|
||||
<cstring>Mod/CAM</cstring>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
@@ -355,7 +355,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/PathWorkbench.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/PathWorkbench.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -197,7 +197,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_3DSurface.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_3DSurface.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
@@ -55,7 +55,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_3DSurface.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_3DSurface.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -583,7 +583,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -595,7 +595,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -595,7 +595,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
@@ -617,7 +617,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
@@ -119,7 +119,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Array.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Array.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -29,7 +29,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_BaseGeometry.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_BaseGeometry.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
@@ -584,7 +584,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Camotics.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Camotics.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@@ -113,7 +113,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Comment.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Comment.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -162,7 +162,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Compound.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Compound.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@@ -132,7 +132,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Copy.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Copy.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
@@ -102,7 +102,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Custom.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Custom.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@@ -56,7 +56,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Datums.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Datums.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -604,7 +604,7 @@
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier>FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Deburr.svg</dc:identifier>
|
||||
<dc:identifier>FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Deburr.svg</dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |