FUNCTION constraints_geometry_shell_based_surface_model
(* SCHEMA Ap242_managed_model_based_3d_engineering_mim_LF; *)
FUNCTION constraints_geometry_shell_based_surface_model
(m: shell_based_surface_model): BOOLEAN;
LOCAL
result : BOOLEAN := TRUE;
END_LOCAL;
REPEAT j := 1 TO SIZEOF(m.sbsm_boundary);
IF (NOT ('AP242_MANAGED_MODEL_BASED_3D_ENGINEERING_MIM_LF.OPEN_SHELL' IN
TYPEOF(m.sbsm_boundary[j])) AND
(NOT ('AP242_MANAGED_MODEL_BASED_3D_ENGINEERING_MIM_LF.CLOSED_SHELL' IN
TYPEOF(m.sbsm_boundary[j]))))
THEN
result := FALSE;
RETURN(result);
(* A surface model is composed of OPEN_ and CLOSED_SHELLs. *)
END_IF;
END_REPEAT;
RETURN(result);
END_FUNCTION;
Referenced By
Defintion constraints_geometry_shell_based_surface_model is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:20:10-04:00