FUNCTION valid_geometrically_bounded_wf_point

(* SCHEMA AUTOMOTIVE_DESIGN; *)
 
FUNCTION valid_geometrically_bounded_wf_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 (valid_geometrically_bounded_wf_curve(pnt\point_on_curve.
      basis_curve));
    ELSE
      IF 'AUTOMOTIVE_DESIGN.POINT_REPLICA' IN TYPEOF(pnt) THEN
        RETURN (valid_geometrically_bounded_wf_point(pnt\point_replica.
        parent_pt));
      END_IF;
    END_IF;
  END_IF;
  RETURN (FALSE);
END_FUNCTION; (* declared in: aic_geometrically_bounded_wireframe *)

Referenced By

Defintion valid_geometrically_bounded_wf_point is references by the following definitions:
DefinitionType
 geometrically_bounded_wireframe_shape_representation ENTITY


[Top Level Definitions] [Exit]

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