|
FUNCTION associated_surface (arg : pcurve_or_surface) : surface; LOCAL surf : surface ; END_LOCAL ; IF 'geometry_schema.pcurve' IN TYPEOF ( arg ) THEN surf := arg \ pcurve . basis_surface ; ELSE surf := arg ; END_IF ; RETURN ( surf ) ; END_FUNCTION; -- associated_surface |
|
public class FAssociated_surface public static Value run(SdaiContext _context, Value arg) |