FUNCTION list_face_loops

(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)

FUNCTION list_face_loops
 		(f: face) : LIST[0:?] OF loop;
   LOCAL
	 loops : LIST[0:?] OF loop := [];
   END_LOCAL;
 
   REPEAT i := 1 TO SIZEOF(f.bounds);
	 loops := loops +(f.bounds[i].bound);
   END_REPEAT;
	 
  RETURN(loops);
END_FUNCTION;  (*  STEP Part 42 (unchanged in 2nd edition)  *)

Referenced By

Defintion list_face_loops is references by the following definitions:
DefinitionType
 face ENTITY
 subface ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-03-25T00:11:39-04:00