hexagon logo

Extracting highs and lows for Profiles

I'm working with a large volume of parts that are mostly profile driven. Is there a way to output the high and low of many profiles as a dimension(s) itself?
Parents
  • Would this work for your scenario? This would only give you the high or low of each scan.

    Max,min index. From scan assign v1 =maxindex(scn?.hit[1..scn?.numhits].z) then assign v2=scn?.hit[v1].z
    Make generic point using v2 as the z meas. (note all [are square brackets)
    Also instead of creating V2 you can paste this "scn1.HIT[V1].TX" TY or TZ into the generic point XYZ's and "scn1.HIT[V1].I" J or K into the vectors.
Reply
  • Would this work for your scenario? This would only give you the high or low of each scan.

    Max,min index. From scan assign v1 =maxindex(scn?.hit[1..scn?.numhits].z) then assign v2=scn?.hit[v1].z
    Make generic point using v2 as the z meas. (note all [are square brackets)
    Also instead of creating V2 you can paste this "scn1.HIT[V1].TX" TY or TZ into the generic point XYZ's and "scn1.HIT[V1].I" J or K into the vectors.
Children