|
FUNCTION constraints_geometry_shell_based_wireframe_model (m : shell_based_wireframe_model) : BOOLEAN; LOCAL result : BOOLEAN := TRUE ; END_LOCAL ; REPEAT j := 1 TO SIZEOF ( m . sbwm_boundary ) ; IF ( NOT ( 'topology_schema.wire_shell' IN TYPEOF ( m . sbwm_boundary [ j ] ) ) AND ( NOT ( 'topology_schema.vertex_shell' IN TYPEOF ( m . sbwm_boundary [ j ] ) ) ) ) THEN result := FALSE ; RETURN ( result ) ; END_IF ; END_REPEAT ; RETURN ( result ) ; END_FUNCTION; -- constraints_geometry_shell_based_wireframe_model |
|
public class FConstraints_geometry_shell_based_wireframe_model public static Value run(SdaiContext _context, Value m) |