FUNCTION associated_surface

(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
FUNCTION associated_surface
 		(arg : pcurve_or_surface) : surface;
 LOCAL
	 surf : surface;
 END_LOCAL;
 
 IF 'STRUCTURAL_FRAME_SCHEMA.PCURVE' IN TYPEOF(arg) THEN
	 surf := arg.basis_surface;
 ELSE
	 surf := arg;
 END_IF;
 RETURN(surf);
 END_FUNCTION;  (* STEP Part 42 (unchanged in 2nd edition)  *)

Referenced By

Defintion associated_surface is references by the following definitions:
DefinitionType
 get_basis_surface FUNCTION
 intersection_curve ENTITY
 seam_curve ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-03-25T00:11:39-04:00