hexagon logo

Alignment offset

I have a script that changes the alignment offset values.
but when I run it it changes the theoretical values ​​of all points.
what should I change in my script so that it doesn't change the nominals of the points?
Parents
  • One cheat I've come up with is to create the variable alignment using the first part that the program was written for. After your A1 alignment create a generic point and use math for the nom and meas values (at 0-0-0) then create another alignment using that point and the rest of your program should be solid and update the rest of the program

    XYZ_PT =GENERIC/POINT,DEPENDENT,CARTESIAN,$
    NOM/XYZ,<0+0,0+0,0+0>,$
    MEAS/XYZ,<0+0,0+0,0+0>,$
    NOM/IJK,<0+0,0+0,1+0>,$
    MEAS/IJK,<0+0,0+0,1+0>
    ABC_SET =ALIGNMENT/START,RECALL:A1,LIST=YES
    ALIGNMENT/TRANS,XAXIS,XYZ_PT
    ALIGNMENT/TRANS,YAXIS,XYZ_PT
    ALIGNMENT/TRANS,ZAXIS,XYZ_PT
    ALIGNMENT/END
Reply
  • One cheat I've come up with is to create the variable alignment using the first part that the program was written for. After your A1 alignment create a generic point and use math for the nom and meas values (at 0-0-0) then create another alignment using that point and the rest of your program should be solid and update the rest of the program

    XYZ_PT =GENERIC/POINT,DEPENDENT,CARTESIAN,$
    NOM/XYZ,<0+0,0+0,0+0>,$
    MEAS/XYZ,<0+0,0+0,0+0>,$
    NOM/IJK,<0+0,0+0,1+0>,$
    MEAS/IJK,<0+0,0+0,1+0>
    ABC_SET =ALIGNMENT/START,RECALL:A1,LIST=YES
    ALIGNMENT/TRANS,XAXIS,XYZ_PT
    ALIGNMENT/TRANS,YAXIS,XYZ_PT
    ALIGNMENT/TRANS,ZAXIS,XYZ_PT
    ALIGNMENT/END
Children
No Data