FUNCTION closed_shell_reversed

(* SCHEMA integrated_cnc_schema; *)
FUNCTION closed_shell_reversed (
    a_shell : closed_shell 
    ) : oriented_closed_shell;
  LOCAL
    the_reverse : oriented_closed_shell;
  END_LOCAL;
    IF 'INTEGRATED_CNC_SCHEMA.ORIENTED_CLOSED_SHELL' IN TYPEOF(a_shell) 
      THEN
      the_reverse := dummy_tri || connected_face_set(a_shell\
        connected_face_set.cfs_faces) || closed_shell() || 
        oriented_closed_shell(a_shell\oriented_closed_shell.
        closed_shell_element, NOT a_shell\oriented_closed_shell.orientation
        );
    ELSE
      the_reverse := dummy_tri || connected_face_set(a_shell\
        connected_face_set.cfs_faces) || closed_shell() || 
        oriented_closed_shell(a_shell, FALSE);
    END_IF;
    RETURN (the_reverse);
END_FUNCTION; -- 10303-42: topology_schema

Referenced By

Defintion closed_shell_reversed is references by the following definitions:
DefinitionType
 shell_reversed FUNCTION


[Top Level Definitions]

Generated by STEP ToolsTM EXPRESS to HTML Converter
on 2010-01-12T10:42:25-02:00