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

coordinates missing on fusion 360

Anonymous

coordinates missing on fusion 360

Anonymous
Not applicable

hi ,

i fix the Postproc for old Plasma Cutting , i have a problem during G2 or G3

when i use Inventor Cam to generate the iso in the circle program i find X,Y,J,I

when i use Fusion 360 during G2 G3 Circle in the Iso is missing Y coordinate

 

ths for helping

0 Likes
Reply
285 Views
2 Replies
Replies (2)

raycon2010
Contributor
Contributor

I'm not sure I understand what you're asking.

 

In this case guessing at a next step (based on skimming over your cps file without giving it to much thought)   I'd probably try a couple of things. One commenting out the xOutput.reset() in your switch statement and see what's produced and another adding  the yOutput.reset() if X cord goes missing.

 

 

 

/** Force output of X, Y, and Z. */
function forceXYZ() {
  xOutput.reset();
  yOutput.reset();
  zOutput.reset();
}
// Bunch of stiff skipped over
switch (getCircularPlane()) {
    case PLANE_XY:
      xOutput.reset(); // Force output of X - why only X? 
      yOutput.reset(); // Force output of Y

      writeBlock(gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), iOutput.format(cx), jOutput.format(cy));
      break;
    default:
      linearize(tolerance);

 

0 Likes

Anonymous
Not applicable

 my friendthks for helping !!!

i try to insert in my Post Pro the following code and now is working .

in the circular cutting i get all X,Y,I,J .

 

switch (getCircularPlane()) {
case PLANE_XY:
xOutput.reset(); // Force output of X - why only X?
yOutput.reset(); // Force output of Y
writeBlock(gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), iOutput.format(cx), jOutput.format(cy));
break;
default:
linearize(tolerance);

0 Likes