hexagon logo

Assignment Shortcuts and their meanings?

Hi guys!
I've been a CMM Programmer for two years.
There are many things I don't know.
What I want to learn most is the Assignment command.
How do these commands work and what do they mean?
What do the abbreviated names mean?
Can you help me?
Thank you very much in advance.
Parents
  • The highest point along Z is :
    ASSIGN/ZINDEX=MAXINDEX(SCN.HIT[1..SCN1.NUMHITS].Z)
    ASSIGN/HIGHEST_Z_HIT=SCN1.HIT[ZINDEX].XYZ

    The nearest hit from along x axis is :
    ASSIGN/XINDEX=MININDEX(ABS(SCN.HIT[1..SCN1.NUMHITS].X))
    ASSIGN/NEAREST_X_HIT=SCN1.HIT[XINDEX].XYZ

    You can create generic point with those values (.X,.Y and .Z)​
Reply
  • The highest point along Z is :
    ASSIGN/ZINDEX=MAXINDEX(SCN.HIT[1..SCN1.NUMHITS].Z)
    ASSIGN/HIGHEST_Z_HIT=SCN1.HIT[ZINDEX].XYZ

    The nearest hit from along x axis is :
    ASSIGN/XINDEX=MININDEX(ABS(SCN.HIT[1..SCN1.NUMHITS].X))
    ASSIGN/NEAREST_X_HIT=SCN1.HIT[XINDEX].XYZ

    You can create generic point with those values (.X,.Y and .Z)​
Children
No Data