Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Export toolpath to CSV

dominik.reisach
Explorer

Export toolpath to CSV

dominik.reisach
Explorer
Explorer

Hello!

 

I need help exporting my toolpaths to a CSV file.

 

I tried using the Autodesk XYZ post-processor. It works fine when the Tool Orientation is the same as the WCS. However, as soon as I change the Tool Orientation (what I actually need to do!), the export fails.

The error message is "Tool orientation is not supported!" I don't get it... I just want the coordinates to be exported.

 

Can someone help me, please?

 

Best,

Dominik

0 Likes
Reply
Accepted solutions (1)
524 Views
2 Replies
Replies (2)

seth.madore
Community Manager
Community Manager

You will need to add multi-axis support to your post processor. This guide can help you do just that.


Seth Madore
Customer Advocacy Manager - Manufacturing
1 Like

dominik.reisach
Explorer
Explorer
Accepted solution

@seth.madoreThanks for your reply, but that didn't help. However, mingling with the .cps file made me find the issue:

 

function onSection() {
{ // pure 3D
var remaining = currentSection.workPlane;
/**
if (!isSameDirection(remaining.forward, new Vector(0, 0, 1))) {
error(localize("Tool orientation is not supported."));
return;
}
*/
setRotation(remaining);
}

 

It just commented out the if-statement and now it is working.

0 Likes