FUNCTION gbsf_check_point

(* SCHEMA AUTOMOTIVE_DESIGN; *)
 
FUNCTION gbsf_check_point(pnt : point) : BOOLEAN;
  IF 'AUTOMOTIVE_DESIGN.CARTESIAN_POINT' IN TYPEOF(pnt) THEN
    RETURN (TRUE);
  ELSE
    IF 'AUTOMOTIVE_DESIGN.POINT_ON_CURVE' IN TYPEOF(pnt) THEN
      RETURN (gbsf_check_curve(pnt\point_on_curve.basis_curve));
    ELSE
      IF 'AUTOMOTIVE_DESIGN.POINT_ON_SURFACE' IN TYPEOF(pnt) THEN
        RETURN (gbsf_check_surface(pnt\point_on_surface.basis_surface));
      ELSE
        IF 'AUTOMOTIVE_DESIGN.DEGENERATE_PCURVE' IN TYPEOF(pnt) THEN
          RETURN (gbsf_check_curve(pnt\degenerate_pcurve.reference_to_curve\
          representation.items[1]) AND gbsf_check_surface(pnt\degenerate_pcurve
          .basis_surface));
        END_IF;
      END_IF;
    END_IF;
  END_IF;
  RETURN (FALSE);
END_FUNCTION; (* declared in: aic_geometrically_bounded_surface *)

Referenced By

Defintion gbsf_check_point is references by the following definitions:
DefinitionType
 geometrically_bounded_surface_shape_representation ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:16:12-04:00