Overview Schemas Index

Footprint_definition_arm (jsdai.SFootprint_definition_arm)


FUNCTION fd_get_rmodels
          (input : SET [2:2] OF View_definition_relationship) : SET [0:?] OF Geometric_model;

LOCAL
      gm : SET  OF  Geometric_model := [];
      pvd : SET OF Product_view_definition := [];
    END_LOCAL;
      pvd := fd_get_components(input);
    IF (SIZEOF(pvd) >= 0) THEN      
      REPEAT i := 1 TO HIINDEX(pvd);
        gm := gm + fd_get_amodel(pvd[i]);
      END_REPEAT;
      RETURN (gm);
    END_IF;
    RETURN(?);

END_FUNCTION; -- fd_get_rmodels

public class FFd_get_rmodels
          public static Value run(SdaiContext _context, Value input)