FUNCTION constraints_geometry_shell_based_surface_model
(* SCHEMA step_ship_schema; *)
-- ONLY IN AP203
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) BY 1;
IF (NOT ('STEP_SHIP_SCHEMA.OPEN_SHELL' IN TYPEOF(m.
sbsm_boundary[j]))) AND (NOT (
'STEP_SHIP_SCHEMA.CLOSED_SHELL' IN
TYPEOF(m.sbsm_boundary[j]))) THEN
result := FALSE;
RETURN(result);
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 ToolsTM EXPRESS to HTML Converter
on 2007-09-24T12:42:22-04:00