The week's been a busy one with Group Project work at University - having way too many meetings, that haven't resulted in a great outcome.
This post is in reference to recent commit history in the CAM developer branch
Nevertheless there are has been a few more opportunities to work on the CAM module. The Cam Objects have been tweaked so that the Tool Path Generators are automatically updated when there is change to the Part Geometry and the Stock Geometry material. This is useful for obvious reasons so that the whole Cam Feature will automatically update itself and along with this the resultant GCode rather than having to manually calculate all the features again.
The next step was attempted to integrate a Cam Library - libarea-clipper into the source tree and make the python bindings available for other python modules within FreeCAD. This was only really good practice learning how to play with CMake configuration files, that's all, but the end result is that our TPG's can now use this library if they are c++ or python!
Work also began on working on the TPGFactory methods for essentially loading all the TPG's if they are c++ based or Python based.
C++ was pretty straight forward going where we can interact with the TPG and TPGFeature very easily.
Python requires making an extension using boost::python. This has its set of many difficulties and still has alot of work to get done but in practice it does work.
One stumbling point was that for TPGPython our c++ python extension to be loaded into Python, we have to put this in a seperate dynamic library. Frustratingly this took some time to realise and required numerous changes to the CMakeLists.txt file - the build configuration script we use.
Another painful learning experience was figuring out why the virtual method run() was not being called. This virtual method is defined inside python and are later called. The first thing I forgot was define the callback - see here and I had implemented the run method in TPGPython which created a conflict. Finally atleast we have an interesting message when we call the run method()
I've also implemented the file search function that looks for .tpg files within a directory and is recursive too.
There's still a lot more work to do, but things are coming together fairly nicely. My apologies if this post hasn't made much sense.
Work on the CAM Module (no pretty pictures):
This post is in reference to recent commit history in the CAM developer branch
Nevertheless there are has been a few more opportunities to work on the CAM module. The Cam Objects have been tweaked so that the Tool Path Generators are automatically updated when there is change to the Part Geometry and the Stock Geometry material. This is useful for obvious reasons so that the whole Cam Feature will automatically update itself and along with this the resultant GCode rather than having to manually calculate all the features again.
The next step was attempted to integrate a Cam Library - libarea-clipper into the source tree and make the python bindings available for other python modules within FreeCAD. This was only really good practice learning how to play with CMake configuration files, that's all, but the end result is that our TPG's can now use this library if they are c++ or python!
Work also began on working on the TPGFactory methods for essentially loading all the TPG's if they are c++ based or Python based.
C++ was pretty straight forward going where we can interact with the TPG and TPGFeature very easily.
Python requires making an extension using boost::python. This has its set of many difficulties and still has alot of work to get done but in practice it does work.
One stumbling point was that for TPGPython our c++ python extension to be loaded into Python, we have to put this in a seperate dynamic library. Frustratingly this took some time to realise and required numerous changes to the CMakeLists.txt file - the build configuration script we use.
Another painful learning experience was figuring out why the virtual method run() was not being called. This virtual method is defined inside python and are later called. The first thing I forgot was define the callback - see here and I had implemented the run method in TPGPython which created a conflict. Finally atleast we have an interesting message when we call the run method()
I've also implemented the file search function that looks for .tpg files within a directory and is recursive too.
There's still a lot more work to do, but things are coming together fairly nicely. My apologies if this post hasn't made much sense.