FUNCTION path_head_to_tail
(* SCHEMA ship_moulded_form_schema; *)
FUNCTION path_head_to_tail(
a_path: path
): BOOLEAN;
LOCAL
n : INTEGER;
p : BOOLEAN := TRUE;
END_LOCAL;
n := SIZEOF(a_path.edge_list);
REPEAT i := 2 TO n BY 1;
p := p AND (a_path.edge_list[i - 1].edge_end :=: a_path.edge_list[i]
.edge_start);
END_REPEAT;
RETURN(p);
END_FUNCTION; -- path_head_to_tail
Referenced By
Defintion path_head_to_tail is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:16:47-04:00