Overview Schemas Index

TOPOLOGY_SCHEMA (jsdai.STopology_schema)


FUNCTION shell_reversed
          (a_shell : shell) : shell;

IF ('TOPOLOGY_SCHEMA.OPEN_SHELL' IN  TYPEOF  (a_shell) ) THEN
     RETURN  (open_shell_reversed (a_shell));
   ELSE
     IF ('TOPOLOGY_SCHEMA.CLOSED_SHELL' IN TYPEOF (a_shell) ) THEN
       RETURN  (closed_shell_reversed (a_shell));
     ELSE
       RETURN (?);
     END_IF;
   END_IF;

END_FUNCTION; -- shell_reversed

public class FShell_reversed
          public static Value run(SdaiContext _context, Value a_shell)