FUNCTION constraints_geometry_shell_based_wireframe_model
(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
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 ('STRUCTURAL_FRAME_SCHEMA.WIRE_SHELL' IN TYPEOF(m.sbwm_boundary[j])) AND
(NOT ('STRUCTURAL_FRAME_SCHEMA.VERTEX_SHELL' IN TYPEOF(m.sbwm_boundary[j]))))
THEN
result := FALSE;
RETURN(result);
(* A wireframe model is composed of WIRE_ and VERTEX_SHELLs *)
END_IF;
END_REPEAT;
RETURN(result);
END_FUNCTION; (* STEP Part 42 (unchanged in 2nd edition) *)
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
2023-03-25T00:11:39-04:00