FUNCTION associated_surface
(* SCHEMA feature_based_process_planning; *)
FUNCTION associated_surface(
arg: pcurve_or_surface
): surface;
LOCAL
surf : surface;
END_LOCAL;
IF 'FEATURE_BASED_PROCESS_PLANNING.PCURVE' IN TYPEOF(arg) THEN
surf := arg.basis_surface;
ELSE
surf := arg;
END_IF;
RETURN(surf);
END_FUNCTION; -- associated_surface
Referenced By
Defintion associated_surface is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:18:01-04:00