Community
Fusion Manufacture
Talk shop with the Fusion (formerly Fusion 360) Manufacture Community. Share tool strategies, tips, get advice and solve problems together with the best minds in the industry.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Export toolpath to CSV

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
dominik.reisach
435 Views, 2 Replies

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

Export toolpath to CSV

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

Tags (3)
Labels (6)
2 REPLIES 2
Message 2 of 3

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

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
Message 3 of 3

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

@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.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report