04-29-2022
02:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-29-2022
02:44 AM
The posts do have that code; however the problematic part is actually in the onSection() function.
function onSection() {
...
// invert axes for secondary spindle // default code
if (getSpindle(true) == SPINDLE_SUB) { // default code
invertAxes(true, false); // default code
}
else if(getSpindle(true) == SPINDLE_MAIN){ // added code to correct
invertAxes(false, false); // added code to correct
}
Fusion