FUNCTION get_kinematic_joints_from_oriented_joints
(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION get_kinematic_joints_from_oriented_joints
      (ors : SET OF oriented_joint ) : SET OF kinematic_joint;
   LOCAL
      result : SET OF kinematic_joint := [];
   END_LOCAL;
      IF SIZEOF(ors) > 0 THEN
         REPEAT i := 1 TO HIINDEX(ors);
            result := result + ors[i].edge_element;
         END_REPEAT;
      END_IF;
      RETURN (result);
END_FUNCTION;
Referenced By
Defintion get_kinematic_joints_from_oriented_joints is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2025-09-04T17:14:54-04:00