FUNCTION constraints_geometry_shell_based_wireframe_model
(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP232
-- IN AP203e2/AP232/AP238 STEP-NC/AP242
FUNCTION constraints_geometry_shell_based_wireframe_model
(m : shell_based_wireframe_model ) : BOOLEAN;
LOCAL
result : BOOLEAN := TRUE;
END_LOCAL;
REPEAT j := 1 TO SIZEOF(m.sbwm_boundary);
IF NOT ('STEP_MERGED_AP_SCHEMA.WIRE_SHELL' IN TYPEOF(m.sbwm_boundary[j])) AND NOT ('STEP_MERGED_AP_SCHEMA.VERTEX_SHELL' IN TYPEOF(m.sbwm_boundary[j])) THEN
result := FALSE;
RETURN (result);
END_IF;
END_REPEAT;
RETURN (result);
END_FUNCTION;
Referenced By
Defintion constraints_geometry_shell_based_wireframe_model is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2024-09-06T14:00:33-04:00