|
FUNCTION face_bound_reversed (a_face_bound : face_bound) : face_bound; LOCAL the_reverse : face_bound ; END_LOCAL ; IF ( 'topology_schema.face_outer_bound' IN TYPEOF ( a_face_bound ) ) THEN the_reverse := dummy_tri || face_bound ( a_face_bound \ face_bound . bound , NOT ( a_face_bound \ face_bound . orientation ) ) || face_outer_bound ( ) ; ELSE the_reverse := dummy_tri || face_bound ( a_face_bound . bound , NOT ( a_face_bound . orientation ) ) ; END_IF ; RETURN ( the_reverse ) ; END_FUNCTION; -- face_bound_reversed |
|
public class FFace_bound_reversed public static Value run(SdaiContext _context, Value a_face_bound) |