HI Azox,
please check the Options of the postprocessor. I am very sure there is a Option to be selected to have it in that way (Something like chancel_..._befor_...
regards
Christian
--
--
You received this message because you subscribed to the Google
Groups-group "dxf2gcode-dev".
To post a message, send mail to dxf2gc...@googlegroups.com
To unsubscribe, send mail to dxf2gcode-de...@googlegroups.com
See http://groups.google.de/group/dxf2gcode-dev?hl=en for more options
and the dxf2gcode project page at http://code.google.com/p/dxf2gcode/
---
You received this message because you are subscribed to the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dxf2gcode-de...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe, send mail to dxf2gcode-dev+unsubscribe@googlegroups.com
See http://groups.google.de/group/dxf2gcode-dev?hl=en for more options
and the dxf2gcode project page at http://code.google.com/p/dxf2gcode/
---
You received this message because you are subscribed to the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dxf2gcode-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
--
You received this message because you subscribed to the Google
Groups-group "dxf2gcode-dev".
To post a message, send mail to dxf2gc...@googlegroups.com
To unsubscribe, send mail to dxf2gcode-dev+unsubscribe@googlegroups.com
See http://groups.google.de/group/dxf2gcode-dev?hl=en for more options
and the dxf2gcode project page at http://code.google.com/p/dxf2gcode/
---
You received this message because you are subscribed to a topic in the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dxf2gcode-dev/CpPhBt4JSzI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dxf2gcode-dev+unsubscribe@googlegroups.com.
--
--
You received this message because you subscribed to the Google
Groups-group "dxf2gcode-dev".
To post a message, send mail to dxf2gc...@googlegroups.com
To unsubscribe, send mail to dxf2gcode-dev+unsubscribe@googlegroups.com
See http://groups.google.de/group/dxf2gcode-dev?hl=en for more options
and the dxf2gcode project page at http://code.google.com/p/dxf2gcode/
---
You received this message because you are subscribed to a topic in the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dxf2gcode-dev/CpPhBt4JSzI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dxf2gcode-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe, send mail to dxf2gcode-de...@googlegroups.com
See http://groups.google.de/group/dxf2gcode-dev?hl=en for more options
and the dxf2gcode project page at http://code.google.com/p/dxf2gcode/
---
You received this message because you are subscribed to a topic in the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dxf2gcode-dev/CpPhBt4JSzI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dxf2gcode-de...@googlegroups.com.
Hi Thierry,
in order to better understand it for all of us and to be able to reproduce it. Can you generate a dxf with the affected shape as an test file and also specify the tool diameter which you are using to try to reproduce it.
Just as a guess à This could be linked to a undercut or other tolerance / drawing issues.
However this would help a lot at least to guide you a bit more in the correct direction ….
Regards
Christian
You received this message because you are subscribed to the Google Groups "dxf2gcode-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dxf2gcode-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dxf2gcode-dev/c76a819c-2643-4189-8fda-06335817cc83n%40googlegroups.com.
Hi Thierry,
1.)
this seems to be a known topic while handling dxf files which are not drawn exact or exported with tolerances:
I located the failure somewhere around here:
The Algorithm cannot find a intersection of the shapes and therefore thinks he needs to remove everything. (But needed to add a bit more failure reporting to find it …)
DEBUG core.shapeoffset PairWiseInterferenceDetection 600 : - Begin = End; Remove all; SPoint: Point(X 1634.147 Y 473.239)
What kind of geometry are you using (Polyline, LWPolyline, Spline, segments of lines and arcs, or whatever …), how did you generate the dxf? Try to zoom in your dxf with autocad or similar to check for inaccuracies in that region. I didn’t succeeded in making the algorithm more robust if the intersection cannot be found. Feel free to propose / commonly discuss this topic ….
2.)
There was a bug with the mill depths and I thought I fixed it. But maybe did implement another one without testing enough. The bug should be around here:
https://sourceforge.net/p/dxf2gcode/sourcecode/ci/develop/tree/source/dxf2gcode/core/shape.py#l396
max_slice = -abs(self.axis3_slice_depth)
workpiece_top_Z = abs(self.axis3_start_mill_depth)
# We want to mill the piece, even for the first pass, so remove one
# "slice"
initial_mill_depth = 0.0 - max_slice
2 times negative is positive again I guess ….
To view this discussion on the web visit https://groups.google.com/d/msgid/dxf2gcode-dev/4dd35953-d8f2-4f61-8479-0dddafccb078n%40googlegroups.com.