FUNCTION path_reversed
(* SCHEMA associative_draughting; *)
FUNCTION path_reversed(
a_path: path
): path;
LOCAL
the_reverse : path;
END_LOCAL;
IF 'ASSOCIATIVE_DRAUGHTING.ORIENTED_PATH' IN TYPEOF(a_path) THEN
the_reverse := oriented_path(a_path\oriented_path.path_element,NOT
a_path\oriented_path.orientation);
ELSE
the_reverse := oriented_path(a_path,FALSE);
END_IF;
RETURN(the_reverse);
END_FUNCTION; -- path_reversed
Referenced By
Defintion path_reversed is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:14:12-04:00